Adobe Premiere Pro CS3 MKV Support?

Discussion and help related to Adobe video software goes here. e.x. Premiere, After Effects, Photoshop, etc.
Locked
User avatar
LivingFlame
Joined: Sat May 28, 2005 4:41 pm
Location: Closer than you think...
Org Profile

Post by LivingFlame » Fri Aug 01, 2008 9:53 pm

mirkosp wrote:
LivingFlame wrote:Well, we do have a guide for AviSynth.

We also have another guide on how to use those .avs files in Premiere.

Basically, create an .avs file and write in it:

Code: Select all

DirectShowSource("C:\file path\video file.mkv")
After that, you'll have to read the guide about getting it into Premiere, because I've never personally done that. And be aware that it's possible that this plugin doesn't work in CS3. I don't know.
Basically x2 that BUT I suggest you to use the FFmpegsource instead of the directshowsource.
I thought about suggesting ffmpegsource, but then I was like, "I'm lazy, so I don't want to find the download right now." So kudos to you for putting in more effort than I was willing to put in. XD

Also, good to know the plugin works in CS3, I guess.
... yea ...

User avatar
AceD
I AM THE BEST
Joined: Sat Dec 07, 2002 6:52 pm
Status: Lurking
Org Profile

Post by AceD » Fri Oct 17, 2008 5:05 pm

mirkosp wrote:
LivingFlame wrote:Well, we do have a guide for AviSynth.

We also have another guide on how to use those .avs files in Premiere.

Basically, create an .avs file and write in it:

Code: Select all

DirectShowSource("C:\file path\video file.mkv")
After that, you'll have to read the guide about getting it into Premiere, because I've never personally done that. And be aware that it's possible that this plugin doesn't work in CS3. I don't know.
Basically x2 that BUT I suggest you to use the FFmpegsource instead of the directshowsource.
Differences are:
- ffmpegsource is frame accurate while directshowsource isn't (this often leads to frame order erros with directshowsource)
- ffmpegsource creats a cache file for your video the first time you run the script, which means that it will kill way less ram than directshowsource (which means premiere will crash way less, perhaps won't even crash).

usage is:

Code: Select all

ffmpegsource("C:\file path\video file.mkv")
this will not import audio. To get audio you should use

Code: Select all

ffmpegsource("C:\file path\video file.mkv", atrack=-1)
this will make a cache file for your audio... and it will be stored as uncompressed pcm so it WILL weight quite a lot...

Also, the avs plugin for premiere works just fine in pro cs3. :)
thanks for posting the ffmpeg details

Locked

Return to “Adobe Software”