What program opens m2ts files?
-
- Joined: Sat Jan 12, 2008 11:51 pm
What program opens m2ts files?
I got a new digital camera, and when it records video, it records it in this format called m2ts, and Windows Movie Maker or Adobe Premiere does NOT support this file type. Can anyone help out?
All my haters:I'm awesome, and you're just jealous and biased elitists. Fuck you very much.
And I still say CASSHERN SINS SUCKS ASS!!!!
And I still say CASSHERN SINS SUCKS ASS!!!!
- Zarxrax
- Joined: Sun Apr 01, 2001 6:37 pm
- Contact:
Re: What program opens m2ts files?
DGindex, I believe.
- Willen
- Now in Hi-Def!
- Joined: Sun Jul 10, 2005 1:50 am
- Status: Melancholy
- Location: SOS-Dan HQ
Re: What program opens m2ts files?
Which version of Premiere? Premiere Pro CS4 has native support and Premiere Elements 7 does too.
I assume that you have a AVCHD camera/camcorder since most of the questions about M2TS files are about footage from those types of products. AVCHD (http://en.wikipedia.org/wiki/AVCHD) is H.264/MPEG-4 AVC video and Dolby Digital (AC3) audio so some software will need to transcode or convert the video stream for editing.
You could always use AviSynth and frameserve the footage to Premiere and import it via the Premiere AVS plug-in. Or convert the files to lossless Huffyuv or uncompressed video (huge files!). You'll need the proper DirectShow codecs installed (ffdshow should suffice) and a M2TS file splitter (Haali's is usually recommended). Depending on how powerful your computer is, you might not be able to easily edit the files. In particular, scrubbing the timeline will be laggy.
Other programs that can open and edit these files are Sony Vegas 7.0e & Pro 8, Vegas Movie Studio 8 Platinum and newer, Pinnacle Studio Plus 11 and newer, Apple Final Cut Pro 6.0.1, and iMovie '08 and newer. Most of them will either transcode the video internally or require conversion to an intermediate format (Apple). Expect to use a good chunk of hard drive space either way.
I assume that you have a AVCHD camera/camcorder since most of the questions about M2TS files are about footage from those types of products. AVCHD (http://en.wikipedia.org/wiki/AVCHD) is H.264/MPEG-4 AVC video and Dolby Digital (AC3) audio so some software will need to transcode or convert the video stream for editing.
You could always use AviSynth and frameserve the footage to Premiere and import it via the Premiere AVS plug-in. Or convert the files to lossless Huffyuv or uncompressed video (huge files!). You'll need the proper DirectShow codecs installed (ffdshow should suffice) and a M2TS file splitter (Haali's is usually recommended). Depending on how powerful your computer is, you might not be able to easily edit the files. In particular, scrubbing the timeline will be laggy.
Other programs that can open and edit these files are Sony Vegas 7.0e & Pro 8, Vegas Movie Studio 8 Platinum and newer, Pinnacle Studio Plus 11 and newer, Apple Final Cut Pro 6.0.1, and iMovie '08 and newer. Most of them will either transcode the video internally or require conversion to an intermediate format (Apple). Expect to use a good chunk of hard drive space either way.
-
- Joined: Sat Jan 12, 2008 11:51 pm
Re: What program opens m2ts files?
Yes, it is an AVCHD camera by Canon. I don't remember which version of Adobe Premiere I use. And what is this AviSynth process, and how do you use it?
All my haters:I'm awesome, and you're just jealous and biased elitists. Fuck you very much.
And I still say CASSHERN SINS SUCKS ASS!!!!
And I still say CASSHERN SINS SUCKS ASS!!!!
- Willen
- Now in Hi-Def!
- Joined: Sun Jul 10, 2005 1:50 am
- Status: Melancholy
- Location: SOS-Dan HQ
Re: What program opens m2ts files?
It is described here: http://www.animemusicvideos.org/guides/ ... meth2.html and here: http://www.videohelp.com/forum/archive/ ... 34524.html
The plug-in was developed with AMV creation in mind, but is obviously useful for general video importing and editing.
The plug-in was developed with AMV creation in mind, but is obviously useful for general video importing and editing.
-
- Joined: Sat Jan 12, 2008 11:51 pm
Re: What program opens m2ts files?
I made a new AVS script like it said and posted DirectShowSource("C:\Directory\File Name.m2ts")
But when I tried to import it, it said:
Avisynth Error:
Script error: there is no function named "DirectShowSource"
(C:\Directory\File Name.m2ts)
Then I click OK, and it says Avisynth Error:
Import: couldn't open "C:\blankclip.avs"
What am I doing wrong?
But when I tried to import it, it said:
Avisynth Error:
Script error: there is no function named "DirectShowSource"
(C:\Directory\File Name.m2ts)
Then I click OK, and it says Avisynth Error:
Import: couldn't open "C:\blankclip.avs"
What am I doing wrong?
All my haters:I'm awesome, and you're just jealous and biased elitists. Fuck you very much.
And I still say CASSHERN SINS SUCKS ASS!!!!
And I still say CASSHERN SINS SUCKS ASS!!!!
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
Re: What program opens m2ts files?
You'll want to use DGAVCDec (DGAVCIndex and DGAVCDecode.dll) instead of DGMPGDec (DGIndex and DGDecode.dll). You need to make sure you place DGAVCDecode.dll in C:\Program Files\AviSynth 2.5\plugins, or else it won't autoload.
Open the .m2ts in DGAVCIndex and let it save the .dga indexing file. Then use AVCSource in your script to open the .dga rather than using DirectShowSource at all (which, you might not have DirectShowSource.dll in your AviSynth plugins directory).
You can actually have DGAVCIndex (or DGIndex, if you were working with MPEG-2) generate a script for you. That info is available in the help, but the basic gist is that you have a template.avs file residing in the same directory as the program, and it contains something like this, at the very least:
You then tell the program where that template is (Options->AVS Template, and then the Change Template File button), and then when you save the .dga file it will make the script for you automatically. The __vid__ part is the key there - it tells the program to replace __vid__ with the actual directory and filename you're saving to. That's two underscores on each side.
Open the .m2ts in DGAVCIndex and let it save the .dga indexing file. Then use AVCSource in your script to open the .dga rather than using DirectShowSource at all (which, you might not have DirectShowSource.dll in your AviSynth plugins directory).
You can actually have DGAVCIndex (or DGIndex, if you were working with MPEG-2) generate a script for you. That info is available in the help, but the basic gist is that you have a template.avs file residing in the same directory as the program, and it contains something like this, at the very least:
Code: Select all
AVCSource("__vid__.dga")
My profile on MyAnimeList | Quasistatic Regret: yeah, yeah, I finally got a blog
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
Re: What program opens m2ts files?
Isn't this a bigger problem right here?:
I thought DirectShowSource was a core filter in AVISynth. KidEgo, what version do you have? You should be on at least 2.5.7.KidEgo wrote:Avisynth Error:
Script error: there is no function named "DirectShowSource"
(C:\Directory\File Name.m2ts)
-
- Joined: Sat Jan 12, 2008 11:51 pm
Re: What program opens m2ts files?
Okay, I got the avs into Premiere successfully, but it saved the audio track as AC3, and Premiere doesn't support that. What do I do?Qyot27 wrote:You'll want to use DGAVCDec (DGAVCIndex and DGAVCDecode.dll) instead of DGMPGDec (DGIndex and DGDecode.dll). You need to make sure you place DGAVCDecode.dll in C:\Program Files\AviSynth 2.5\plugins, or else it won't autoload.
Open the .m2ts in DGAVCIndex and let it save the .dga indexing file. Then use AVCSource in your script to open the .dga rather than using DirectShowSource at all (which, you might not have DirectShowSource.dll in your AviSynth plugins directory).
You can actually have DGAVCIndex (or DGIndex, if you were working with MPEG-2) generate a script for you. That info is available in the help, but the basic gist is that you have a template.avs file residing in the same directory as the program, and it contains something like this, at the very least:You then tell the program where that template is (Options->AVS Template, and then the Change Template File button), and then when you save the .dga file it will make the script for you automatically. The __vid__ part is the key there - it tells the program to replace __vid__ with the actual directory and filename you're saving to. That's two underscores on each side.Code: Select all
AVCSource("__vid__.dga")
All my haters:I'm awesome, and you're just jealous and biased elitists. Fuck you very much.
And I still say CASSHERN SINS SUCKS ASS!!!!
And I still say CASSHERN SINS SUCKS ASS!!!!
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
Re: What program opens m2ts files?
You should be able to use (say) BeSweet to convert the .AC3 to .WAV. If you don't have BeSweet, it's included in the AMVapp.