Quote:
Originally Posted by jh82
Ok, I put this in a batch file which seems to work better but now I'm getting "Codec 'h264' (28) is not supported by the bits
tream filter 'aac_adtstoasc'. Supported codecs are: aac (86018)
Error initializing bitstream filter: aac_adtstoasc"
|
Alright, after searching around here and on the web, I changed the code to this and it works
Code:
ffmpeg
for %%a in ("*.flv") do ffmpeg -i "%%a" -vcodec copy -acodec libmp3lame "newfiles\%%~na.mp4"
pause
I can hear audio now in kodi which is what I use for watching on my tv. Kodi didn't seem to recognize the CB audio codec. I'm not sure why the aac_adtstoasc didn't work, though and I'm not sure this is the best options?
Thanks for the help.