Hi,
I have a problem in AME CS4 when I want to encode video from my DV Camcoder to any of the .MP4, .FLV or .F4V format. My source is 16:9 video in DV AVI format of 720x576 and par 1.422. When I want to export to some square pixel format, the source is interpreted by AME as 1050x576, which is not 16:9 (correct value for 16:9 should be 1024x576)! When setting output size to 16:9, it results in tiny black bars on top and bottom, which is a little embarrasing. I didn't find a way how to tell AME that the source is 16:9 format. I hadn't this problem in CS3.
Does someone has the same problem?
Thank you for any ideas. I moved this problem here from thread https://forum.videohelp.com/topic370717.html.[/url]
+ Reply to Thread
Results 1 to 5 of 5
-
-
I can confirm this odd behaviour with pal 16:9 dv footage. I have all current updates. The source preview window looks ok, but the output preview window shows tiny letterboxing despite playing with different settings (but according to jagabo's explanation in the other thread, this behaviour is normal).
this is because in a 720x576 frame the 16:9 image is contained in the inner 704x576 pixels. So the full 720x576 frame is slightly wider than 16:9. Same for 4:3.
You can get around this by using avisynth, the premiere avs import plugin (do all your resizing and deinterlacing in avisynth using square pixels, besides, the deinterlacing in adobe is horrible quality drop field). Then import your resized, 1:1 footage into premiere for editing using custom settings.
Or if you have multiple projects from the same footage, leave the DV settings, export your edited project as a lossless format, then do the deinterlacing and resizing 1:1 with avisynth, then use that .avs as input into any encoder (you can use AME as well) -
For DV files, you open them up with AVISource(). You need a vfw DV decoder, such as cedocida installed. FFDshow has one as well, but limits to YV12 colorspace. Cedocida has more configuration options.
AVISource("myvideo.avi")
You can find the Premiere AVS Import plugin on sourceforge
http://videoeditorskit.sourceforge.net/
I would deinterlace and resize within the avs script (I'm assuming your DV is interlaced) e.g.
Load_Stdcall_Plugin("C:\Program Files\AviSynth 2.5\plugins\yadif.dll")
AVISource("myvideo.avi")
Yadif(order=0) #bottom field first
LanczosResize(640,360)
There are many choices for deinterlacers, some are much better (but slower to process) than others. Yadif gives decent quality/speed ratio. e.g. You can use yadifmod+nnedi2 for better quality (but slower). And you can resize to whatever 1:1 pixel dimension (16:9 AR) you want, in this example I used 640x360
Cheers
Similar Threads
-
Exporting Premiere Pro CS4 Project - Adobe Media Encoder question
By schmickers in forum Authoring (Blu-ray)Replies: 1Last Post: 27th Jan 2012, 18:51 -
Adobe Media Encoder CS4 makes wrong files
By Daninet in forum Video ConversionReplies: 12Last Post: 15th Jun 2010, 09:04 -
CS4 media encoder file format for PS3
By hbecs02499 in forum Video ConversionReplies: 1Last Post: 11th Apr 2010, 06:10 -
Changes in Adobe Premiere CS4 not reflected in Encore CS4 Timeline
By Funky Monk in forum Authoring (DVD)Replies: 0Last Post: 23rd Oct 2009, 06:51 -
Adobe Premiere 1.5: Adobe Media Encoder: Frame size and scaling?
By vid83 in forum EditingReplies: 2Last Post: 30th Nov 2008, 03:17