And the question has been answered many times on this forum already. Just do a Forum Search for it.Typhoon859@GMail.com wrote:That's how most people respond lately, lol. "Google it!" Ugh, I hate that. Forums are made for a reason ^^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.
Adobe Premiere Pro CS3 MKV Support?
- The Origonal Head Hunter
- The Propheteer
- Joined: Sat Jul 16, 2005 12:21 am
- Status: Hooked on a Feeling
- Location: State of Denial
- LivingFlame
- Joined: Sat May 28, 2005 4:41 pm
- Location: Closer than you think...
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:
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.
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")
... yea ...
- LivingFlame
- Joined: Sat May 28, 2005 4:41 pm
- Location: Closer than you think...
- mirkosp
- The Absolute Mudman
- Joined: Mon Apr 24, 2006 6:24 am
- Status: (」・ワ・)」(⊃・ワ・)⊃
- Location: Gallarate (VA), Italy
- Contact:
Basically x2 that BUT I suggest you to use the FFmpegsource instead of the directshowsource.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: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.Code: Select all
DirectShowSource("C:\file path\video file.mkv")
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")
Code: Select all
ffmpegsource("C:\file path\video file.mkv", atrack=-1)
Also, the avs plugin for premiere works just fine in pro cs3.

- BasharOfTheAges
- Just zis guy, you know?
- Joined: Tue Sep 14, 2004 11:32 pm
- Status: Breathing
- Location: Merrimack, NH
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.Typhoon859@GMail.com wrote:That's how most people respond lately, lol. "Google it!" Ugh, I hate that. Forums are made for a reason ^^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.
Anime Boston Fan Creations Coordinator (2019-2023)
Anime Boston Fan Creations Staff (2016-2018)
Another Anime Convention AMV Contest Coordinator 2008-2016
| | |
Anime Boston Fan Creations Staff (2016-2018)
Another Anime Convention AMV Contest Coordinator 2008-2016
| | |
- LivingFlame
- Joined: Sat May 28, 2005 4:41 pm
- Location: Closer than you think...
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. XDmirkosp wrote:Basically x2 that BUT I suggest you to use the FFmpegsource instead of the directshowsource.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: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.Code: Select all
DirectShowSource("C:\file path\video file.mkv")
Also, good to know the plugin works in CS3, I guess.
... yea ...
- AceD
- I AM THE BEST
- Joined: Sat Dec 07, 2002 6:52 pm
- Status: Lurking
thanks for posting the ffmpeg detailsmirkosp wrote:Basically x2 that BUT I suggest you to use the FFmpegsource instead of the directshowsource.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: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.Code: Select all
DirectShowSource("C:\file path\video file.mkv")
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:this will not import audio. To get audio you should useCode: Select all
ffmpegsource("C:\file path\video file.mkv")
this will make a cache file for your audio... and it will be stored as uncompressed pcm so it WILL weight quite a lot...Code: Select all
ffmpegsource("C:\file path\video file.mkv", atrack=-1)
Also, the avs plugin for premiere works just fine in pro cs3.