4

Files with the .MOV extension are great with their tiny size!

I'm trying to play these files on Linux using VLC, as it's a great cross-platform application, but the problem is that NO video is shown while the audio is playing.

How can I solve this problem and enjoy watching MOV files?
Here is file media info:
enter image description here

fixer1234
  • 28,064
wisdom
  • 497

2 Answers2

3

Well, judging from MediaInfo, the video codec is 1000 frames per second and smc This is the Apple Graphics Codec, a proprietary codec that probably isn't supported in every player.

See also:

The SMC codec is identified in Quicktime files by the codec FOURCC "smc " (note the space, ASCII 0x20, needed to complete the four-character code). Ostensibly, the codec was named after its developer, Sean M. Callahan.

The audio codec is QCELP, a proprietary codec by Qualcomm.


I'm afraid these are very specialized codecs, and therefore you can't expect every player to support them. While VLC claims to support SMC, you've obviously encountered a bug. Therefore, you could use these files and file a bug report with the VLC developer team.

In any case you can try using FFmpeg to re-encode the file to a more widely used video codec such as h.264 (libx264 in FFmpeg) or MPEG-4 (mpeg4). See here for more: FFmpeg: The ultimate Video and Audio Manipulation Tool - Super User Blog

slhck
  • 235,242
-1

I got the .mov video to work in mpc-hc build number 1.6.1.4074:

  • Go to View → Options
  • Go to Player → Formats
  • In the "Formats" window, find "Quick Time Movie (mov)" on the right
  • Double-click on the dropdown on right side and select "QuickTime"
  • Done
Indrek
  • 24,874