Need Help !!! from a pro adobe premiere pro 2 user

Discussion and help related to Adobe video software goes here. e.x. Premiere, After Effects, Photoshop, etc.

Need Help !!! from a pro adobe premiere pro 2 user

Postby Vo!D » Fri Sep 14, 2007 11:58 pm

I got a problem

I converted a video from .mkv to avi format then load it to adobe but it became like this... there are moving things like people etc in the background.

Image

but if I played it to media classic player it is normal and no error.

How can I solve this error?

Lots of thanks guys
Image
Image
Vo!D
 
Joined: 12 Mar 2007
Location: N-Field

Postby Kariudo » Sat Sep 15, 2007 12:07 am

that looks like what you get from using low-bitrate divx or *shudders* .rmvb

what program did you use to do the conversion, and what codec did you use to encode the .avi?
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Postby Vo!D » Sat Sep 15, 2007 12:10 am

I used SUPER v2007 by eRightSoft
Image
Image
Vo!D
 
Joined: 12 Mar 2007
Location: N-Field

Postby Vo!D » Sat Sep 15, 2007 12:12 am

Used Mpeg-4 Codec

Also there are no sound I used MP3 output audio codec
Image
Image
Vo!D
 
Joined: 12 Mar 2007
Location: N-Field

Postby Vo!D » Sat Sep 15, 2007 12:21 am

Ok this is the setting I used for a complete info.

Image
Image
Image
Vo!D
 
Joined: 12 Mar 2007
Location: N-Field

Postby Rapture** » Sat Sep 15, 2007 12:34 am

Haven't seen that program... But I'm sure that your problem is in your codec. I would just suggest using some AviSynthing,VDubModing and lossless codecs,like Lagarith or Huffyuv. Lagarith takes up less space than Huffy(almost 3 times less),but requires faster machine to playback.
:D I like laughter ;DD
ImageImage
User avatar
Rapture**
 
Joined: 23 Nov 2006
Location: Vilnius , Lithuania

Postby Kariudo » Sat Sep 15, 2007 12:39 am

mpeg4 is generally not for editing. Not to mention that you're loosing quality by re-compressing the video with a lossy codec.

you might save some time by disabling the audio conversion (unless you are using the audio...in which case I suggest using 44100 for the sampling frequency and .wav output)

if it has the option to generate a lossless avi file, use it.
If it doesn't, VirtualDubMod can handle mkv streams. You'll want to use Lagarith to encode the .avi
Lossless files are big, but you won't have video artifacts (like the ones in the cap you posted)...unless of course they were in the video to begin with.

you can try making your clips in vdubmod...but I don't know how frame accurate it will be since you're using a .mkv file
ImageImage
Image
User avatar
Kariudo
Twilight prince
 
Joined: 15 Jul 2005
Location: Los taquitos unidos
Status: 1924 bots banned and counting!

Postby Vo!D » Sat Sep 15, 2007 3:52 am

Rapture** wrote:Haven't seen that program... But I'm sure that your problem is in your codec. I would just suggest using some AviSynthing,VDubModing and lossless codecs,like Lagarith or Huffyuv. Lagarith takes up less space than Huffy(almost 3 times less),but requires faster machine to playback.


WOW its difficult I have no idea on how to use those program tried installing it then comes many question on how applying, executing it.
Image
Image
Vo!D
 
Joined: 12 Mar 2007
Location: N-Field

Postby Rapture** » Sat Sep 15, 2007 3:59 am

Kariudo wrote:you can try making your clips in vdubmod...but I don't know how frame accurate it will be since you're using a .mkv file


I've done that with my Love Hina .mkv footage for my latest vid. All you need is just a simple DirectShowSource() AviSynth script,set fps parameters,and rest cleaning up is up to editor to decide.

This is a script I used for my Love Hina :

Code: Select all
DirectShowSource("L:\Anime Footage\Love Hina *.mkv", fps=23.976)
ConvertToYV12()
KillAudio()
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, pp=2, clip2=deint)
TDecimate()
Deen("w3d",2,3,5)
FluxSmoothST(8,7)
BlindPP(cpu=4, quant=8)
vmToon(strength=24, xstren=128)
aWarpSharp(depth=8)


Where '*' there shoud be episode number (01,02,03,etc.). Rest filters are just for basic cleaning up.

In other words - just DirectShowSource you footage,and use VDubMod to create clips-just as Kariudo suggested.
:D I like laughter ;DD
ImageImage
User avatar
Rapture**
 
Joined: 23 Nov 2006
Location: Vilnius , Lithuania

Postby Rapture** » Sat Sep 15, 2007 4:01 am

Rapture** wrote:Rest filters are just for basic cleaning up.


Ah damn,no edit button :x There's no need for you to use those filters,if you think your footage has high enough quality.
:D I like laughter ;DD
ImageImage
User avatar
Rapture**
 
Joined: 23 Nov 2006
Location: Vilnius , Lithuania

Postby Vo!D » Sat Sep 15, 2007 5:01 am

Rapture** wrote:
Rapture** wrote:Rest filters are just for basic cleaning up.


Ah damn,no edit button :x There's no need for you to use those filters,if you think your footage has high enough quality.


OK ill try thanks
Image
Image
Vo!D
 
Joined: 12 Mar 2007
Location: N-Field

Postby Vo!D » Sat Sep 15, 2007 6:06 am

downloaded virtualdubmod but as I load the .mkv file i get an error like this

Image
Image
Image
Vo!D
 
Joined: 12 Mar 2007
Location: N-Field

Postby Rapture** » Sat Sep 15, 2007 6:25 am

Download and install AMVApp - it contains VDubMod and AviSynth,and then create .avs (AviSynth script) file. And then enter DirectShowSource().
:D I like laughter ;DD
ImageImage
User avatar
Rapture**
 
Joined: 23 Nov 2006
Location: Vilnius , Lithuania

Postby post-it » Sat Sep 15, 2007 7:26 am

Rapture** wrote: DirectShowSource().
X2
User avatar
post-it
 
Joined: 17 Jul 2002
Status: Audio: bass remains; if else, 3D

Postby Vo!D » Sat Sep 15, 2007 4:24 pm

Rapture** wrote:Download and install AMVApp - it contains VDubMod and AviSynth,and then create .avs (AviSynth script) file. And then enter DirectShowSource().


OK after downloading AMVApp and making a .avs file using your example I named it mkv.avs

Image
screen shot

after this what am i going to do next ?
Image
Image
Vo!D
 
Joined: 12 Mar 2007
Location: N-Field

Next

Return to Adobe Software

Who is online

Users browsing this forum: No registered users and 1 guest