Guru challenge:
I want to use this as a desktop background. I've seen it played before (https://www.screencast.com/t/AfCj2ocy) but VLC won't open it. Windows Movies and TV opens it, but it goes straight to the end frame and will not play (it's only 16 seconds long). Is there an expert here that can tell me how to use FFMPEG batch converter or some other batcher that can grok the format to convert these to a standard .264 mp4 that will play anywhere?
Thanks in advance! See attached.
+ Reply to Thread
Results 1 to 3 of 3
-
Last edited by Daemach; 3rd Nov 2020 at 13:45. Reason: Added evidence link
-
The reason is you have 2 videos muxed in the container. Stream 0 and 1 . Stream 0 is just two frames. Because it's stream number is "zero" it's the default stream for most players. Stream 1 is the longer 16s version but a "photo negative" . You need to invert the colors if you want it to look "normal"
e.g just stream copy the longer stream
Code:ffmpeg -i "Beach 015.mp4" -map 0:1 -c:v copy -movflags +faststart copy.mp4
Code:ffmpeg -i "Beach 015.mp4" -map 0:1 -vf negate -c:v libx264 -crf 20 -movflags +faststart negate.mp4
Similar Threads
-
one video and subtitle play well in vlc and other players, but fast in tv
By jraju in forum Newbie / General discussionsReplies: 23Last Post: 18th Jan 2020, 06:58 -
Please look at this video and see why it won't play in vlc (plays in MPC)
By jimdagys in forum Newbie / General discussionsReplies: 3Last Post: 9th May 2017, 16:31 -
Convert and optimize mp4 y mkv files to be steaming with VLC over LAN
By jesusguevarautomotriz in forum Newbie / General discussionsReplies: 0Last Post: 21st Jul 2016, 03:03 -
BluRay player won't play certain MKV/MP4 files
By Dan091 in forum Newbie / General discussionsReplies: 13Last Post: 22nd Mar 2016, 01:28 -
.f4v files won't play in VLC or open in Handbrake
By GalaxyUnicorn in forum Video ConversionReplies: 1Last Post: 9th Jan 2016, 03:06