본문 바로가기
기타

Ffmpeg avi에서 mp4 변환시 chrome에서 재생 안될때 해결

by 개발_블로그 2021. 9. 14.
반응형

ffmpeg을 사용하여서 avi 영상을 mp4로 변환을 하는데 자꾸 서버에서 재생을 못하는 에러를 만났다 . 

계속 명령어를 바꿔가면서 시도를 해봤지만 안되길래 나랑 같은 사람이 있을까하여 

구글에다가 "ffmpeg avi to mp4 ,chrome error" (짧은 영어) 를 쳐서 검색을 했더니 정말 나같은 사람이 많이 있었다. 

https://stackoverflow.com/questions/21184014/ffmpeg-converted-mp4-file-does-not-play-in-firefox-and-chrome

 

FFMPEG converted mp4 file does not play in firefox and chrome

I have used FFMPEG command to convert flv video file to mp4 and use html5 video tag and play video in browser. But after the video is converted to mp4 using ffmpeg it does not play in firefox and c...

stackoverflow.com

 

여기서 해결 !!!! 

ffmpeg -y -i "input.avi" -ar 22050 -ab 512 -b 800k -f mp4 -s 514*362 -strict -2 -c:a aac "output.mp4"

 

이렇게 명령어를 바꿔서 입력하니까 해결 !!!

저 사이에 있는 뜻은 나중에 한번 더 알아봐야겠다 .. 아직은 모름...

반응형