0

I'm trying to investigate why a certain video is not playing properly in the browser, you can see here the video compared with a video that works properly, also you can see that on my desktop (OS X), it shows a preview the second video file but not a preview of the first (implicating to me that there is something going on with a codec)

Codec as per VLC of the first video (doesn't work in browser):

enter image description here

Codec as per VLC of the second video (works fine in browser):enter image description here

Comparison of the videos on my desktop:

enter image description here

Anthony
  • 13,434
  • 14
  • 60
  • 80

1 Answers1

1

The failing video looks like ts container (VLC showing PIDs) with mp4 extension, so even though the codecs themselves are ok, the container format itself is unsupported. If true, it needs to be remuxed to genuine mp4 container to make it work.

tbucher
  • 161
  • 4
  • Thanks a lot for the info, care to check out this question I just put up today? : https://stackoverflow.com/questions/47820722/playing-webm-chunks-as-standalone-video – Anthony Dec 14 '17 at 19:39