Just i converted mov video file to mp4 file using ffmpeg. But the converted file is not playing JW player. Actual mp4 file videos working fine in all browsers. Thanks for help.
Asked
Active
Viewed 850 times
0
-
1This is a superuser question. stack-overflow is just for programming and program related questions. – 09stephenb Dec 18 '13 at 09:39
-
Thanks stephen.. But i get a solution for this issue . – shiva Dec 18 '13 at 14:05
-
Thanks all specially to Ethan.. Great to see the response from you. I fixed the issue. But my question is why MOV video files are not playing in JW player. – shiva Dec 20 '13 at 11:00
2 Answers
-1
ffmpeg -i movie.mov -vcodec libx264 -acodec acc -strict experimental -profile:v baseline -f mp4 -y mp4video.mp4

Hemant
- 181
- 3
- 14
-
You should test your commands first. You're forgetting the `-i` and the `-f mp4` is superfluous. – llogan Dec 18 '13 at 18:14
-
ffmpeg -i movie.mov -vcodec libx264 -acodec acc -strict experimental -profile:v baseline -f mp4 -y mp4video.mp4 – Hemant Dec 19 '13 at 02:33
-
-1
My ffmpeg conversion comment is correct. But ffmpeg installation is the reason for the issue. I used the following command to convert:
ffmpeg -i /uploads/sample.move -acodec libfaac -ab 96k -vcodec libx264 -vpre slower -vpre main -level 21 -refs 2 -b 345k -bt 345k -threads 0 /uploads/sample.mp4
-
You mention that the ffmpeg installation is the issue but you do not explain what this issue actually is and how you fixed it. – llogan Dec 21 '13 at 05:56
-
While installing ffmpeg we have to add some lib module for conversion. That modules was not installed properly in my server. We reinstall the ffmpeg properly then issue fixed. – shiva Dec 23 '13 at 08:38
-
You should be more specific in case others are experiencing the same issue (whatever the issue may be as it is impossible to know from the limited amount of info you provided). – llogan Dec 23 '13 at 20:05