Wow.. seems this has turned into a constant problem.. I apologize if I'm repeating whats already been asked.I've Been working on a new project In Premiere 2.0. Thirty some odd seconds into I decided to export ...(dont know why I do it.. guess its a habit) to see what it looked like. So far I get Garbage at the top of the screen and/or the video is way off as in slowed down while the song keeps goin at regular pace, the song skips, the clip crashes any player I put it in. Here are a couple of shots of the garbage:
These are both Lagarith (version 1.3.12) The garbage varies(can get a lil worse and reach into mid-screen) when I export through Huffy(v2.1.1) but overall its still a big mess and the sync still gets mangled.
Im Working with two different Anime but the scripts are pretty much the same with a few differences.
Scripts
----------------------------
1st Anime:
mpeg2source("C:\STAR1\VIDEO_TS\Disc 1.d2v",ipp=true,cpu=4)
Telecide(order=1,guide=0)
Decimate(cycle=5,mode=2)
AssumeFPS(29.97)
Crop(4,2,-12,-0)
1st Anime's Opening:
Only the crop changes to (12,0,-4,0)
2nd Anime:
mpeg2source("C:\LEGENDBLACKHEAVEN1\VIDEO_TS\Black Heaven Disc 1.d2v",ipp=true,cpu=4)
Telecide(order=1,guide=0)
Decimate(cycle=5,mode=2)
AssumeFPS(29.97)
Here are my Project settings
----------------------------
Editing Mode: Desktop
Timebase 29.97
Framesize : 720X480
Ratio D1/DV NTSC (.9)
Fields: No Fields Progressive Scan
Display: 30 fps Drop-Frame Timecode
Capture(matter?): DV Capture
Export Settings
----------------------------
File Type: Microsoft AVI
Compressor: Lagarith Lossless codec
Color Depth: Millions of Colors
Frame Size: 720X480
Frame Rate: 29.97
Ratio: D1/DV NTSC (.9)
Data Rate: Recompress and Maintain Data Rate
Bit depth: Use Project Setting
Fields: No Fields (Progressive Scan)
Deinterlace Video Footage: No
Optomize Stills: No
Audio: Uncompressed at 16 bit 44100 (using wav. rejoining the mp3 in Vdub so .. irrelevant?)
Im sure Im missing something simple. Im wanting to guess its the crop, but im not sure why that would be the cause. The 1St anime just has to be cropped. The settings you see in the script .. are just to get rid of black edges nothing else. The 2nd also needs to be cropped (not a lot) but I figured it'd be just the same to do that later to the completed video.Anyone have any ideas? Thanks in Advance.
Premiere Pro 2.0 (exporting)
- reddragon_syndicate
- Joined: Thu Mar 03, 2005 12:45 pm
Premiere Pro 2.0 (exporting)
[MOD17: Removed 341 instances of the word "please" and 55 exclamation marks.]
- Kariudo
- Twilight prince
- Joined: Fri Jul 15, 2005 11:08 pm
- Status: 1924 bots banned and counting!
- Location: Los taquitos unidos
- Contact:
premiere pro's export still sucks...
looks like your only option is to export uncompressed or by using the debugmode frameserver (which I've never done...it basically allows you to encode your export with another program...like vdubmod)
it's only been tested up to pro 1.5, but it may be worth trying if uncompressed isn't an option
looks like your only option is to export uncompressed or by using the debugmode frameserver (which I've never done...it basically allows you to encode your export with another program...like vdubmod)
it's only been tested up to pro 1.5, but it may be worth trying if uncompressed isn't an option
- reddragon_syndicate
- Joined: Thu Mar 03, 2005 12:45 pm
- Purge
- Joined: Mon Oct 10, 2005 9:18 am
- Location: Under Aus
- Willen
- Now in Hi-Def!
- Joined: Sun Jul 10, 2005 1:50 am
- Status: Melancholy
- Location: SOS-Dan HQ
At the very end of your AviSynth scripts add:
This will ensure that every clip you output will have the same resolution for editing and is mod16 so the encoder won't complain.
It is also possible that the problem stems from using YUY2 or YV12 colorspace and Premiere not liking it. If you are editing with the AVS files, add:
if making clips, make sure the encoder is set to output RGB .
Code: Select all
LanczosResize(720,480)
It is also possible that the problem stems from using YUY2 or YV12 colorspace and Premiere not liking it. If you are editing with the AVS files, add:
Code: Select all
ConvertToRGB32()
- reddragon_syndicate
- Joined: Thu Mar 03, 2005 12:45 pm
The Debugmode Frameserver.. isnt compatible with 2.0.. as far as I can tell.. I tried it and didnt get anything well.. anything better that is. I am following through with Purge and Willen's advice I just havnt gotten all the clips converted yet. and most likely won't today. Thanks guys I'm gonna give that a shot.
[MOD17: Removed 341 instances of the word "please" and 55 exclamation marks.]