Importing from a Panasonic HDC TM700

I just got this Panasonic which is able to shoot video at 1080p 28Mbps. I know that this format is not AVCHD compliant, and currently not recognized by iMovie 09.
Does anyone know of a work around? The first step is getting the files imported into the Mac, and then the next would be to see if one of the converters could convert it to AIC, which I was hoping would work as they are .mts files.

24" iMac 2.8GHz, Mac OS X (10.6.2), 13" Macbook Pro 2.26mHz

Posted on Mar 27, 2010 6:28 PM

Reply
298 replies

Apr 27, 2010 10:13 AM in response to JetCat

I have always had OIS turned on. As far as I can tell, there are no problems with stabilization. Realize that I'm no expert on this stuff. I can tell you that when I first tried to edit and make a dvd, I had iMovie analyze the clips for stabilization. It seems that the dvd was not good. Although I don't know if that was exactly the reason. I have subsequently read in posts that you should not analyze for stabilization in iMovie, and have not selected that option. Seems like the dvd's are better.
I have shown friends the dvd's I've made and they seem to think they are fine. For me having seen the original, they are hard to watch.

Apr 27, 2010 7:23 PM in response to brettf

Found it!

Out of the box QT X has issues with M4V and AC3. Google 'quicktime x ac3' for pointers to various discussions on the subject. Seems that some folks are having luck installing Perian, which is a collection of codecs for QT but may require you to run QT in 32 bit mode. I didn't install it since success is not guaranteed.

Instead, I started playing around with the arguments to ffmpeg and discovered that this minimal command line will work (using Alan's syntax from his workflow):

ffmpeg -i "$1" -vcodec copy "$1.m4v"

What this does is re-encode the AC3 track into an AAC track. I couldn't exactly tell if the audio quality was affected. You can also opt to keep the original AC3 track and add a new AAC track with the following command line:

ffmpeg -i "$1" -acodec copy -vcodec copy "$1.m4v" -newaudio

Do either of those and you'll get your sound.

I leave updating your copy of Alan's workflow as an exercise to the reader 🙂

May 9, 2010 12:11 AM in response to ddt460

I rewrote the earlier Rewrap2M4V automator app into a ksh script since I like doing things on the command line. Here it is:


#!/bin/ksh
#
# ffwrap - Simple KSH script which takes Pansaonic TM700 raw
# video files as input, and runs them through
# ffmpeg to rewrap them, and make a usable *.m4v
# file which iMovie can read.

if [[ $# -eq 0 ]];then
print "Usage ffwrap filename(s)"
exit
fi

for arg;do
filename=$arg
basename=${filename%.*}
outname=$basename.m4v

# Rewrap file into an .m4v
/Applications/ClipGrab.app/Contents/MacOS/ffmpeg -i $filename -acodec copy -vcodec copy $outname > \
/dev/null 2>&1

print $filename "rewrapped to" $outname
done




One thing that I'm bummed about is that resulting converted file loses all the original EXIF data, including, most importantly, the Date/Time Original field. So after you import the converted movie into iMovie, and you hover your cursor over the clip, the date/time that shows up is not the original date/time when you shot the video; it's now the date/time when you did the conversion.

And unfortunately, if you try to copy the EXIF data from the original video file to the converted file, you'll get an error because writing to an m4v file isn't supported.

Message was edited by: Jaime Villacorte

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Importing from a Panasonic HDC TM700

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.