SIGN IN
::
SPONSORS
::
ADVERTISING
::
ABOUT US
::
CONTACT US
FORUMS
TUTORIALS
MAGAZINE
STOCKYARD
VIDEOS
PODCASTS
EVENTS
SERVICES
NEWSLETTER
NEWS
BLOGS
FORUMS:
list
list (w/ descriptions)
archive
tags
search
hall of fame
recent posts
Re: Encoding a Windows Media Player compatible DV25 .avi file
COW Forums
:
FFmpeg
VIEW ALL
•
ADD A NEW POST
•
PRINT
Respond to this post
•
Return to posts index
•
Read entire thread
Re: Encoding a Windows Media Player compatible DV25 .avi file
by
stephen dixon
on Mar 2, 2012 at 12:14:47 pm
Have you used the -aspect option? I believe the parameters are just the ratio as x:y, e.g. 16:9 or 4:3.
You could find the aspect of the original source with ffprobe, a bit of regex hacking would return it as a variable:
AR=$(ffprobe source.mov 2>&1|sed "s/.*PAR[[:space:]]*([0-9]*):([0-9]*).*/1:2/")
then you can use the variable as a parameter in the -aspect option:
ffmpeg -i source.mov
[whatever]
-aspect $AR
[whatever] output.avi
This is assuming you're in a POSIX environment of course.
Stephen Dixon
Editor, Animator, Motionographer
Museum Victoria
Posts Index
Read Thread
Reply
Like
Current Message Thread:
Encoding a Windows Media Player compatible DV25 .avi file
by Andreas Wideroe on Mar 1, 2012 at 9:04:44 pm
Re: Encoding a Windows Media Player compatible DV25 .avi file
by Andreas Wideroe on Mar 1, 2012 at 10:32:02 pm
Re: Encoding a Windows Media Player compatible DV25 .avi file
by stephen dixon on Mar 2, 2012 at 12:14:47 pm
Re: Encoding a Windows Media Player compatible DV25 .avi file
by Andreas Wideroe on Mar 6, 2012 at 8:33:11 am
Re: Encoding a Windows Media Player compatible DV25 .avi file
by stephen dixon on Mar 21, 2012 at 11:47:31 am
LOGIN TO REPLY
FORUMS
•
TUTORIALS
•
MAGAZINE
•
STOCKYARD
•
VIDEOS
•
PODCASTS
•
EVENTS
•
SERVICES
•
NEWSLETTER
•
NEWS
•
BLOGS
© 2013
CreativeCOW.net
All rights are reserved. -
Privacy Policy
[
Top
]