문제

please provide me link of good open source exe which i can call from .net and convert mp4 to 3gp and 3gp to mp4.

Thanks

도움이 되었습니까?

해결책

Finally i got the answer: using ffmpeg we can do it like:

ffmpeg -y -i input.mp4 -r 20 -s 352x288 -b 400k -acodec libfaac -ac 1 -ar 8000 -ab 24k file.3gp

다른 팁

Also take a look at mp4box.

With ffmpeg, you usually doing remux only. Such as,

ffmpeg -i " " -acodec copy -vcodec copy ....
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top