Home
last modified time | relevance | path

Searched refs:Vorbis (Results 1 – 5 of 5) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/
Dstructure.txt113 …data from any available metainformation tag (APE, ID3v2, ID3v1, Lyrics3, Vorbis, ASF, RIFF, Real, …
119 …information combined from any source that contains this information (LAME, ID3v2, Vorbis, APE, etc)
156 …data from any available metainformation tag (APE, ID3v2, ID3v1, Lyrics3, Vorbis, ASF, RIFF, Real, …
570 …data from any available metainformation tag (APE, ID3v2, ID3v1, Lyrics3, Vorbis, ASF, RIFF, Real, …
1182 …['ogg']=>array() { // OGG - container format for Ogg Vorbis, OggFLAC, Sp…
1190 …data from any available metainformation tag (APE, ID3v2, ID3v1, Lyrics3, Vorbis, ASF, RIFF, Real, …
1333 …data from any available metainformation tag (APE, ID3v2, ID3v1, Lyrics3, Vorbis, ASF, RIFF, Real, …
1930 …data from any available metainformation tag (APE, ID3v2, ID3v1, Lyrics3, Vorbis, ASF, RIFF, Real, …
2155 …data from any available metainformation tag (APE, ID3v2, ID3v1, Lyrics3, Vorbis, ASF, RIFF, Real, …
DREADME.md80 * Ogg (Vorbis, OggFLAC, Speex, Opus)
304 * Support for Ogg other than Vorbis, Speex and OggFlac (ie. Ogg+Xvid)
394 * All Ogg formats (Vorbis, OggFLAC, Speex) are affected by the
495 * Earlier versions of Coolplayer adds illegal ID3 tags to Ogg Vorbis
Dreadme.txt80 * Ogg (Vorbis, OggFLAC, Speex, Opus)
311 * Support for Ogg other than Vorbis, Speex and OggFlac (ie. Ogg+Xvid)
401 * All Ogg formats (Vorbis, OggFLAC, Speex) are affected by the
514 * Earlier versions of Coolplayer adds illegal ID3 tags to Ogg Vorbis
Dchangelog.txt547 * Bugfix: prevent errors when parsing invalid Vorbis comments
1198 Ogg Vorbis 1.0+ ABR files
1200 Ogg Vorbis 1.0+ VBR files 44k/48k sample rate/stereo files only.
1202 other Ogg Vorbis files.
1579 * Bugfix: Replay Gain values from Vorbis comments are now
1769 1) Native format tags (ASF, VQF, NSV, RIFF, Quicktime, Vorbis)
1791 directory. All Ogg formats (Vorbis, OggFLAC, Speex) are affected
1866 ¤ Ogg/Vorbis-comment files now have comments returned inside
1922 * Bugfix: Vorbis comments were returning an incorrect value for
2011 * Bugfix: Ogg/FLAC files with large Vorbis comments were dying in
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
Dvorbis.js32 var Vorbis = require('../build/libvorbis.js');
40 this.buf = Vorbis._malloc(this.buflen);
44 this.outbuf = Vorbis._malloc(this.outlen << 2);
47 this.vorbis = Vorbis._VorbisInit(this.outbuf, this.outlen);
52 this.callback = Vorbis.Runtime.addFunction(function(len) {
53 var samples = Vorbis.HEAPF32.subarray(offset, offset + len);
67 this.buf = Vorbis._realloc(this.buf, packet.length);
71 Vorbis.HEAPU8.set(packet.data, this.buf);
73 if ((status = Vorbis._VorbisDecode(this.vorbis, this.buf, packet.length, this.callback)) !== 0)
80 Vorbis._free(this.buf); field
[all …]