Having a senior moment. Can you confirm that Studio AC3 & AC3Pro files written by VP cannot be added to the bin/timeline? Attempting to import such files crashes Vegas.
Files can be played in say VLC & also added into Edius
Here's a neat trick I just discovered. No need to remux with a video stream. Just import ac3 file into ffmpeg and output as a vob file. Imports directly into Vegas as a single audio track. I have tested with both stereo and 5.1 ac3 files rendered from Vegas. Here's the simple command line:
I tried it and saved a version of the batch file in my list of useful stuff.
With remarks:
rem Save all this text as: Convert AC3 to VOB to open in Vegas.bat
rem For filenames with spaces, paste your file name inside the quotes.
rem Listening to Tom Petty while you're doing it makes it much easier.
rem In Vegas, File Import. Set File Name to *.* in the drop down box.
ffmpeg -i "Your input filename with spaces".ac3 -c copy "Your output filename with spaces".vob
I tried it and saved a version of the batch file in my list of useful stuff.
With remarks:
rem Save all this text as: Convert AC3 to VOB to open in Vegas.bat
rem For filenames with spaces, paste your file name inside the quotes.
rem Listening to Tom Petty while you're doing it makes it much easier.
rem In Vegas, File Import. Set File Name to *.* in the drop down box.
ffmpeg -i "Your input filename with spaces".ac3 -c copy "Your output filename with spaces".vob
Doesn't work for me as-is, but I found a workaround that might help many, many people.
I Changed:
rem Listening to Tom Petty while you're doing it makes it much easier
To:
rem Listening to Beatles while you're doing it makes it much easier
Do you think it's possible to create a command line with the extension (.bat) to convert multiple ac3 audio files at once?
This would be very useful since you can only convert one file at a time.
Something like this command line below whit that is used to only convert the audio from multiple video files at the same time to AAC format. I've tried here but unsuccessfully
@echo off :next if "%~1"=="" goto done set output=%~dpn1_new%~x1 ffmpeg.exe -i "%~1" -c:a aac -b:a 320k -c:v copy "%output%" shift goto next :done exit
Just a note to say that I'll include this option in a future version of the ImportAssist tool in HappyOtterScripts
Good idea as FFMPEG is often in a folder directly on C:. I would not be too keen on accessing ffmpeg deeply embedded in C:\programs\**** in order to run a .bat. Mind you I do find the 'extension' box a tad small to read easily. Best of luck with Happyotter.