[FFMPEG]Can I merge h264 and aac

作者: _小老虎_ | 来源:发表于2018-08-12 10:03 被阅读1次

https://stackoverflow.com/questions/18756797/can-i-merge-h264-and-aac-to-ts-stream-by-code

using C, IMHO the easiest way is 'system'.

   #include <studio.h>
   ..... 
   system("ffmpeg -i audio.au -i video.h264 -vcodec copy -acodec copy play.ts")

but take care to the ffmpeg license. because depending how your program use ffmpeg it may have huge implication!

shareimprove this answer

相关文章

网友评论

    本文标题:[FFMPEG]Can I merge h264 and aac

    本文链接:https://www.haomeiwen.com/subject/gxfsbftx.html