search for: mode_bitstream_version

Displaying 5 results from an estimated 5 matches for "mode_bitstream_version".

2006 Apr 19
1
HW-Speex: Fileformat and encoding process
...a discription of the format of the frames. What is the reason that the first frame after the header is larger than the other frames? Thanks ST speex-1.1.12/src/speexenc -n --bitrate 12000 female.wav female_nb_12.spx readspx female_nb_12.spx |head -20 speex header Version:1.1.12 rate:8000 mode:0 mode_bitstream_version:4 nb_channels:1 bitrate:-1 frame_size:160 vbr:0 frames_per_packet:1 extra_headers:0 Framesize:33 25 0 0 0 69 110 99 111 speex-1.1.12/src/speexenc -n --bitrate 8000 female.wav female_nb_8.spx readspx female_nb_8.spx |head -20 speex header Version:1.1.12 rate:8000 mode:0 mode_bitstream_version:4 nb_...
2006 May 16
2
Determining length of speex file speech
...less I used -nframes while encoding, which I did not), and multiply this with .02 (20 milliseconds). I did this by hand, for example on the file I send yesterday when asking about the noise, so the output of the program is: $ readspx spfe49_1-small.spx speex header Version:1.1.12 rate:44100 mode:2 mode_bitstream_version:4 nb_channels:2 bitrate:-1 frame_size:640 vbr:0 frames_per_packet:1 extra_headers:0 Page #2: 1 packets. Page #3: 45 packets. Page #4: 45 packets. Page #5: 45 packets. Page #6: 45 packets. Page #7: 45 packets. Page #8: 45 packets. Pages: 8 Packets: 272 Calculating things per hand here 6*45 speex fr...
2006 May 16
0
Determining length of speex file speech
...ot), and multiply this with > .02 (20 milliseconds). > I did this by hand, for example on the file I send yesterday when asking > about the noise, so the output of the program is: > > $ readspx spfe49_1-small.spx > speex header > Version:1.1.12 > rate:44100 > mode:2 > mode_bitstream_version:4 > nb_channels:2 > bitrate:-1 > frame_size:640 > vbr:0 > frames_per_packet:1 > extra_headers:0 > Page #2: 1 packets. > Page #3: 45 packets. > Page #4: 45 packets. > Page #5: 45 packets. > Page #6: 45 packets. > Page #7: 45 packets. > Page #8: 45 packets. >...
2008 Apr 04
0
speexdec 1.2.3
...f (header->speex_version_id > 1) { fprintf (stderr, "This file was encoded with Speex bit-stream version %d, which I don't know how to decode\n", header->speex_version_id); free(header); return NULL; } if (mode->bitstream_version < header->mode_bitstream_version) { fprintf (stderr, "The file was encoded with a newer version of Speex. You need to upgrade in order to play it.\n"); free(header); return NULL; } if (mode->bitstream_version > header->mode_bitstream_version) { fprintf (stderr, "The file...
2008 Apr 04
2
speexdec 1.2.3
On Fri, Apr 4, 2008 at 12:19 AM, Jean-Marc Valin <jean-marc.valin at usherbrooke.ca> wrote: > Jahn, Ray (R.) a ?crit : > > > Dear Speex codec community: > > > > I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any