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
The Origonal Head Hunter
The Propheteer
Joined: Sat Jul 16, 2005 12:21 am
Status: Hooked on a Feeling
Location: State of Denial
Org Profile

Post by The Origonal Head Hunter » Fri Aug 01, 2008 4:42 pm

Typhoon859@GMail.com wrote:
The Origonal Head Hunter wrote:I'm pretty sure if you did a search for 'MKV in Premiere' you'd find a few similiar threads that would help you out.
That's how most people respond lately, lol. "Google it!" Ugh, I hate that. Forums are made for a reason ^^
And the question has been answered many times on this forum already. Just do a Forum Search for it.
RonnieDaking wrote:i like my anime like I like my women, from japan and speaking english
Image
Boredom.

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 4:51 pm

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.
... yea ...

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 4:53 pm

Oh, and for the record, if the plugin doesn't work, then scroll down in that second guide to the part entitled "Frameserving Avisynth to Programs without .avs Support" and do that instead.
... yea ...

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Post by mirkosp » Fri Aug 01, 2008 4:59 pm

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. :)

User avatar
BasharOfTheAges
Just zis guy, you know?
Joined: Tue Sep 14, 2004 11:32 pm
Status: Breathing
Location: Merrimack, NH
Org Profile

Post by BasharOfTheAges » Fri Aug 01, 2008 6:21 pm

Typhoon859@GMail.com wrote:
The Origonal Head Hunter wrote:I'm pretty sure if you did a search for 'MKV in Premiere' you'd find a few similiar threads that would help you out.
That's how most people respond lately, lol. "Google it!" Ugh, I hate that. Forums are made for a reason ^^
And forum standards of behavior going back almost 20 years now dictate that you LURK MOAR before asking questions that have been answered dozens of times before.
Anime Boston Fan Creations Coordinator (2019-2023)
Anime Boston Fan Creations Staff (2016-2018)
Another Anime Convention AMV Contest Coordinator 2008-2016
| | |

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”