Hi, I have a video website and users are uploading their videos.
I'm using ffmpeg to convert these videos. Even they upload avi or wmv files I'm converting to mp4.
And here is convertion code that I'm using.
My problem is about seeking video and I'm using JWPlayer Pro (paid) version. When you wanna jump another minute video starts again on chrome. On Firefox it's just continue. But IE works fine.Code:ffmpeg -i input -c:v libx264 -crf 18 -preset fast -c:a aac -strict experimental -b:a 192k -ac 2 -movflags faststart output.mp4
I was talking with JWPlayer support but they are just saying video encoding has a problem. But I tried other programs like handbrake, super etc. again some videos are ok but some still has same problem.
So what is the best way to convert videos to mp4?
Here is the website that you can check.
http://tv.cozumpark.com/video/784/Exchange-Online-ve-Kullanici-Mailbox-ozellikleri
+ Reply to Thread
Results 1 to 5 of 5
-
-
It could be related to bad PTS (time stamps), it could be related to fastseek flags or it could be a flaw in the player. You could try to experiment with fflags and/or setpts/asetpts filter (se ffmpeg docs)..
Code:ffmpeg -i input -c:v libx264 -crf 18 -preset fast -c:a aac -strict experimental -b:a 192k -ac 2 -movflags faststart -fflags "+genpts-fastseek" output.mp4
I'm the developer behind FFQueue. My posts might reflect this! ;-) -
Hi, thanks for reply. I just tried that code you gave but still same. I have no idea why it's doing this problem.
-
It might be an issue with using constant quality (variable bit rate) for streaming. Try to remove the "-crf XX" switch and replace it with "-b:v 3000k" to see if that is the culprit.
I'm the developer behind FFQueue. My posts might reflect this! ;-) -
Hi, thanks again, but still same.
I think it is about the server. Because I just created web application for testing the video and uploaded to different server. I also used same converted video and it's working fine. Maybe I should reinstall that server.
Similar Threads
-
Video won't play or convert
By the-peoples-poet in forum Video ConversionReplies: 1Last Post: 22nd Dec 2013, 07:23 -
How To: Convert Video to Play on Sony KDL-32EX308
By Teufelshunde in forum User guidesReplies: 0Last Post: 18th May 2012, 23:58 -
How do I convert video and make it play at double speed?
By OM2 in forum Newbie / General discussionsReplies: 7Last Post: 19th Mar 2012, 06:36 -
I can't play any video .ts of my tv schontech LC 3242 UM or convert it
By dbd10 in forum DVB / IPTVReplies: 5Last Post: 27th Jul 2011, 17:41 -
How to ffmpeg to convert video to play in mobile phones.
By skillednerd in forum Video ConversionReplies: 6Last Post: 7th Apr 2011, 14:24