![]() |
|
|
|
|
|
#2
|
|||
|
|||
|
Re: audio from quick time movie
To extract the audio from Quicktime movies do this:
1) download the latest ffmpeg version from here. To extract the archive, use WinRAR or the free 7-zip. 2) Then put the *.mov files you want to convert in the same directory as ffmpeg.exe. 3) Create a new text file and name it something like ffmpeg.bat. Copy this... Code:
ffmpeg -i "*.mov" -vn -acodec pcm_s16le "*.wav" 4) run the .bat file. You should have a new wave file in the folder. 5) You can convert many movies with the same .bat file, so something like this is also possible: Code:
ffmpeg -i "rez_somersethouse_03mov.mov" -vn -acodec pcm_s16le "rez_somersethouse_03mov.wav" ffmpeg -i "2monthsoff-spaceshower05.mov" -vn -acodec pcm_s16le "2monthsoff-spaceshower05.wav" ffmpeg -i "moaner-spaceshower05.mov.mov" -vn -acodec pcm_s16le "moaner-spaceshower05.mov.wav" ffmpeg -i "peggysussed-spaceshower05.mov" -vn -acodec pcm_s16le "peggysussed-spaceshower05.wav" ffmpeg -i "2monthsoff_tokyo_03.mov" -vn -acodec pcm_s16le "2monthsoff_tokyo_03.wav" ffmpeg -i "bornslippy_tokyo_03.mov" -vn -acodec pcm_s16le "bornslippy_tokyo_03v.wav" ffmpeg -i "dinosauradventure_tokyo_03.mov" -vn -acodec pcm_s16le "dinosauradventure_tokyo_03.wav" ffmpeg -i "KOS_tokyo_03.mov" -vn -acodec pcm_s16le "KOS_tokyo_03.wav" ffmpeg -i "pearlsgirl_tokyo_03.mov" -vn -acodec pcm_s16le "pearlsgirl_tokyo_03.wav" ffmpeg -i "darktrain _werchter.mov" -vn -acodec pcm_s16le "darktrain _werchter.wav"
__________________
uw#0523 |
| Post Reply |
| Thread Tools | |
| Display Modes | |
|
|