Displaying 2 results from an estimated 2 matches for "testcase30".
Did you mean:
testcase3
2015 Apr 13
2
Regarding Opus Codec Input output file.
...music_orig.wav
Header length: 44
Sampling frequency: 48000
No. samples: 4358219
No. channels: 2
Data type: integer16
File byte order: little-endian
Host byte order: little-endian
2) I encode this file using following command
./opus_demo -e voip 48000 2 16 music_orig.wav testcase30.opus
3) Then Decoded testcase30.opus using following command
./opus_demo -d 48000 2 testcase30.opus testcase31.wav
4) My quality monitoring app not able to identify file type of "testcase31.wav" , gives following error.
AFfindType - Unknown audio file type
AFopnRead: Error opening i...
2015 Apr 13
0
Regarding Opus Codec Input output file.
Hi Sakharam,
I see 2 potential issues with what you are doing.
1. ./opus_demo -e voip 48000 2 16 music_orig.wav testcase30.opus
in above command, "16" for bits/sec seems too low. I'm no audio
expert, but just cant convince myself you can get any reasonable audio
data with 16 bits/sec. FYI, I was able to encode and decode with 16
bits/sec, but when I played the decode file with "aplay", could...