VorbisJava | A library for working with Ogg Vorbis files | Audio Utils library

 by   Gagravarr Java Version: Current License: Apache-2.0

kandi X-RAY | VorbisJava Summary

kandi X-RAY | VorbisJava Summary

VorbisJava is a Java library typically used in Audio, Audio Utils applications. VorbisJava has no vulnerabilities, it has build file available, it has a Permissive License and it has low support. However VorbisJava has 34 bugs. You can download it from GitHub, Maven.

This library is a pure Java, Apache v2 licensed project for working with Ogg, Vorbis, FLAC, Opus, Speex and Theora files. Currently, support for the Ogg container is fairly complete, offering the ability to read, write, add and change streams within an Ogg file. It should be possible to use the Ogg parts as a basis for dealing with any multimedia data stored in an Ogg container. There is basic support for Skeleton Annodex streams, which provide metadata on top of Ogg files about the streams, but it isn't fully integrated.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              VorbisJava has a low active ecosystem.
              It has 89 star(s) with 24 fork(s). There are 11 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              There are 9 open issues and 17 have been closed. On average issues are closed in 142 days. There are 5 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of VorbisJava is current.

            kandi-Quality Quality

              OutlinedDot
              VorbisJava has 34 bugs (1 blocker, 0 critical, 11 major, 22 minor) and 470 code smells.

            kandi-Security Security

              VorbisJava has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              VorbisJava code analysis shows 0 unresolved vulnerabilities.
              There are 1 security hotspots that need review.

            kandi-License License

              VorbisJava is licensed under the Apache-2.0 License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              VorbisJava releases are not available. You will need to build from source code and install.
              Deployable package is available in Maven.
              Build file is available. You can build the component from source.
              Installation instructions, examples and code snippets are available.
              It has 10057 lines of code, 932 functions and 124 files.
              It has medium code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi has reviewed VorbisJava and discovered the below as its top functions. This is intended to give you an instant insight into VorbisJava implemented functionality, and help decide if they suit your requirements.
            • Detects the media type from an input stream
            • Identifies the type of an OGG packet
            • Checks to see if the packet contains a special type
            • Checks to see if the packet is a Opus special packet
            • Displays information about a file
            • Formats the duration in minutes
            • Returns the number of bytes of this packet
            • Calculate the statistics
            • Populates with the next header
            • Prints the flac info tool
            • Gets the next audio packet
            • Initialize internal data
            • Initializes the skeleton
            • Creates an Ogg audio stream headers
            • Processes the Vorbis file
            • Reads an integer value from the input stream
            • Parse a FLAC file
            • Create a FlacMetadataBlock from an input stream
            • Entry point to the opus file
            • Main entry point for the command line
            • Parses the given stream and generates Tika streams
            • Parse VGA data from an input stream
            • Parses the TANA stream using the given stream
            • Adds a new sound to the video
            • Parses information from the input stream
            • Parses the input stream
            Get all kandi verified functions for this library.

            VorbisJava Key Features

            No Key Features are available at this moment for VorbisJava.

            VorbisJava Examples and Code Snippets

            No Code Snippets are available at this moment for VorbisJava.

            Community Discussions

            Trending Discussions on VorbisJava

            QUESTION

            How to use a Tika custom parser in a jar file?
            Asked 2018-Jul-26 at 20:45

            I'm trying to write a custom Apache Tika parser (for DICOM medical images), and package it as a plugin in a jar file.

            I'm following the instructions from http://tika.apache.org/1.18/parser_guide.html, and took these projects as models:

            So, I created a Maven project, wrote a parser class and a org.apache.tika.parser.Parser file in the resources folder, built the project with mvn install, and I now have a jar file.

            My question is, how do I make Tika use this new parser? The instructions on the Tika wiki say:

            To install a plugin, download it according to instructions below and drop the jar(s) on your classpath. Tika will auto detect the plugin.

            I tried to do this with java -classpath /path/to/my-parser.jar ... but it doesn't seem to work:

            ...

            ANSWER

            Answered 2018-Jul-26 at 20:45

            You've sadly made a common Java newbie mistake - for various historic reasons the java program won't accept both -jar and -classpath options, and will ignore the -classpath parts you've given.

            If you want to run the Apache Tika App on the command line, with an extra parser jar or two added, what you need to do is something like:

            Source https://stackoverflow.com/questions/51542339

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install VorbisJava

            There are seven main classes that you can start with, depending on the kind of file you have, and your interests. These are:. org.gagravarr.ogg.OggFile Provides read and write support for Ogg files of all types, working at the packet / stream level. org.gagravarr.vorbis.VorbisFile Provides read and write support for Ogg Vorbis audio files. Provides access to the key parts of the Vorbis file, such as info and comments. (No support yet for encoding or decoding the audio packets though). org.gagravarr.opus.OpusFile Provides read support for Ogg Opus audio files. Provides access to the key parts of the Opus file, such as info and comments. (No support at all for audio packets, for now). org.gagravarr.speex.SpeexFile Provides read support for Ogg Speex audio files. Provides access to the key parts of the Speex file, such as info and comments. (No support at all for audio packets, for now). org.gagravarr.flac.FlacOggFile Provides read support for FLAC files stored in an Ogg container. Allows access to the key parts of the file, such as Info, Tags and compressed audio. (No encoding or decoding of audio packets though). org.gagravarr.flac.FlacFile Provides read support for regular FLAC files. Provides access to the key parts of the file, such as Info, Tags and compressed audio. (No encoding or decoding of audio packets though). org.gagravarr.skeleton.SkeletonStream Provides read support for a Skeleton metadata stream, typically contained within a video or audio file. The best way to see how to use the code is to look at the Tools Package, which has examples of reading and writing tags, and the Tika Package, which has examples of reading audio metadata. In addition, the unit tests can provide examples of uses too.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/Gagravarr/VorbisJava.git

          • CLI

            gh repo clone Gagravarr/VorbisJava

          • sshUrl

            git@github.com:Gagravarr/VorbisJava.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Explore Related Topics

            Consider Popular Audio Utils Libraries

            howler.js

            by goldfire

            fingerprintjs

            by fingerprintjs

            Tone.js

            by Tonejs

            AudioKit

            by AudioKit

            sonic-pi

            by sonic-pi-net

            Try Top Libraries by Gagravarr

            AlfrescoDataListDownload

            by GagravarrJava

            PDFtkBox

            by GagravarrJava