How do i identify/play this file? (It's a WMV inside a MOV?)

4

I have a file that VLC does not open. It mentioned 'wmv3' so i tried media player with no luck. I use avicodec to check which failed.

I also seen some results saying it's a Quicktime file but somehow encoded in WMV (which sounds like nonsense and the poster said he was guessing).

Here's some random text I see inside the file. Perhaps it will help. Does anyone have an idea what this is?

ftypqt
qt
moov
lmvhd
Apple Sound Media Handler
:hdlr
mhlrvideappl
Apple Video Media Handler
vmhd
9hdlr
frmaWMA2
ASF
Pwave
dhlralisappl

Anyways I want to know how I can see/play the file. I am on Windows 7.

Heres what gspot said (larger image):

user3109

Posted 2011-05-18T19:42:53.520

Reputation:

1

Do you have a file command at hand? Or a hex editor? You should be able to get the FourCC out of that thing. Other than that it seems like there's some QuickTime video stuff, so try to rename it to .mov (although I have to say I'm guessing too)

– slhck – 2011-05-18T19:52:05.307

Your guessing @slhck but it is a well educated guess it's possible whoever gave you the file had the wrong extension... particularly if VLC doesn't play it. – Supercereal – 2011-05-18T20:08:27.147

@slhck: yes, I see 'qt' but I also see 'asf'. It would be helpful if the OP clarified where the text he/she pasted came from. – horatio – 2011-05-18T20:35:58.140

@horatio Yes, totally agree with that. – slhck – 2011-05-18T20:40:18.400

@acidzombie24 Have you tried checking the file with GSpot ?

– Darius – 2011-05-18T20:46:21.840

@slhck, @Kyle, @horatio, @Darius i am surpised gsport worked and avicodec didnt. Ok it appears to be both mov and wmv. so... wtf. How do i play it? The info looks really f'd http://i.imgur.com/erLo7.png

– None – 2011-05-18T21:09:59.157

Answers

2

That is a video in the Windows Media Video 9 (WMV3) format, which is used in Windows Media Player 9.

You will need the Windows Media Player codecs for that, try the WMP 9 codec installation package...

Please note that a QuickTime File Format (MOV) is just a container format, so it can contain WMP media.

Tamara Wijsman

Posted 2011-05-18T19:42:53.520

Reputation: 54 163

I couldnt install it. It works on XP and lower. I'm on win with media player 12. – None – 2011-05-18T22:04:04.530

@acidzombie24: Then you should already have it. Hmm, try to use video editing software like VirtualDub to convert it to a playable file. Seems VLC is incapable of doing this. Combining an open-source video player with a Quicktime container and Windows Media codecs is asking for trouble... ^^ – Tamara Wijsman – 2011-05-18T22:12:55.027

0

You could try using MediaInfo - it does a good job of showing you everything about media files.

geocoo

Posted 2011-05-18T19:42:53.520

Reputation: 1

0

It seems WMV video and WMA audio data are placed in the MOV/MP4 file.
That is, file format (container format) is MOV, video codec (compression method) is WMV, and audio codec is WMA. It's very rare and possible non-standard format, I think.

Have test with SMPlayer, it has better support for MOV/MP4 than VLC.

Try reformat into AVI or WMV with ffmpeg:
ffmpeg.exe -i 'your file' -acodec copy -vcodec copy new_file.avi

9dan

Posted 2011-05-18T19:42:53.520

Reputation: 323