I am trying to transcode an audio of video. I have a live stream(video-h264, audio-mp2). I need to convert an audio to aac codec and stream it. I don't want to waste a lot of resource for video processing. How can I do it with ffmpeg? (I have already tried with copy option.)
Asked
Active
Viewed 1,870 times
1 Answers
2
This is what I use to convert mkv's so that they work on my Chromecast with AAC audio:
ffmpeg -i $1 -vcodec copy -c:a aac -strict experimental output-transcoded.mkv

bitofagoob
- 1,405
-strict experimental
to use the encoderaac
unless yourffmpeg
is outdated. – llogan May 27 '17 at 03:45