Active
Project:
FFmpeg Wrapper
Version:
6.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
4 May 2010 at 20:19 UTC
Updated:
14 Sep 2010 at 13:57 UTC
This is probably due to my ffmpeg-noobness, but I'm wondering why when I do a test on a .mov file, the video codec isn't recognized. When I look at the data in Quicktime, I see that I'm using the H264 codec, but when I click the 'use' radio button next to the video, the video information is blank, though the audio info appears to populate just fine.
I was able to convert a .mp4 file successfully to .avi, so ffmpeg appears to be working.
Any thoughts would be much appreciated, thanks!
Chris
Comments
Comment #1
Somebody-2 commentedI followed domidc's example here: http://drupal.org/node/667286. By always returning true in ffmpeg_wrapper_can_decode, I was able to get the .mov file encoded. My guess is that the .mov package is obfuscating the video file somehow.
Comment #2
chrisshattuck commentedI accidentally posted the above comments from another user's account. This is actually the voice of chrisshattuck.
Comment #3
arthurf commentedWhat is probably happening is that your version of FFmpeg's output when you do ffmpeg -formats is different than what the module currently checks for. Would you mind pasting the output of this command? You should get something like:
Comment #4
markusbroman commentedHi
I am having similar problems, and think it has to do with the version of ffmpeg. My version of ffmpeg wants the command: "ffmpeg -codecs" to return the codecs. When I look at the code it seems as if ffmpeg wrapper sends "ffmpeg -formats" to ffmpeg to get that same list with codecs.
Is there a patch avalible that solves this or would it be alrigh to alter the line 412 in ffmpeg_wrapper.module so that it sends "ffmpeg -codecs" instead of -formats?
edit: I noticed this is an issue regarding 6.x-1.x-dev. I am using 6.x-1.1-beta2, dont know if it makes a difference.
Thanks! // Markus Broman