Gale Andrews wrote:Use this command instead in FFmpeg 3.x.x:
Now I'll be damned. That works!
I still can't quite understand how but it actually works!
It's not exactly how I wanted it to work (just load the file into audacity and be fine with it) but having it run on ffmpeg prior to editing under audacity is perfectly acceptable, given the singularities of these files.
Now...why does it work this way? I am basically telling ffmpeg that it's a WAV file but in fact it is a G.729 file.
Here's the output of ffmpeg 3.3.1:
Code: Select all
C:\Users\rcorreia\Downloads>d:\users\rcorreia\downloads\ffmpeg-3.3.1-win64-share
d\bin\ffmpeg.exe -i 80088.wav 80088_2.wav
ffmpeg version 3.3.1 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 6.3.0 (GCC)
configuration: --disable-static --enable-shared --enable-gpl --enable-version3
--enable-cuda --enable-cuvid --enable-d3d11va --enable-dxva2 --enable-libmfx --
enable-nvenc --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0
r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-lib
bs2b --enable-libcaca --enable-libfreetype --enable-libgme --enable-libgsm --ena
ble-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb -
-enable-libopencore-amrwb --enable-libopenh264 --enable-libopenjpeg --enable-lib
opus --enable-librtmp --enable-libsnappy --enable-libsoxr --enable-libspeex --en
able-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc -
-enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-
libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg --en
able-lzma --enable-zlib
libavutil 55. 58.100 / 55. 58.100
libavcodec 57. 89.100 / 57. 89.100
libavformat 57. 71.100 / 57. 71.100
libavdevice 57. 6.100 / 57. 6.100
libavfilter 6. 82.100 / 6. 82.100
libswscale 4. 6.100 / 4. 6.100
libswresample 2. 7.100 / 2. 7.100
libpostproc 54. 5.100 / 54. 5.100
Guessed Channel Layout for Input Stream #0.0 : mono
Input #0, wav, from '80088.wav':
Duration: 00:11:10.08, bitrate: 8 kb/s
Stream #0:0: Audio: g729 ([131][0][0][0] / 0x0083), 8000 Hz, mono, s16, 8 kb
/s
Stream mapping:
Stream #0:0 -> #0:0 (g729 (native) -> pcm_s16le (native))
Press [q] to stop, [?] for help
Output #0, wav, to '80088_2.wav':
Metadata:
ISFT : Lavf57.71.100
Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 8000 Hz, mono, s16, 1
28 kb/s
Metadata:
encoder : Lavc57.89.100 pcm_s16le
size= 10470kB time=00:11:10.08 bitrate= 128.0kbits/s speed= 305x
video:0kB audio:10470kB subtitle:0kB other streams:0kB global headers:0kB muxing
overhead: 0.000728%
C:\Users\rcorreia\Downloads>
Now, ffmpeg clearly states that this is a G.729 stream.
My ffmpeg doesn't say it is compliant with G.729, so how come this works?
TIA
Cheers