Tagged with importing - Personal View Talks https://www.personal-view.com/talks/discussions/tagged/importing/feed.rss Sat, 04 May 24 15:33:56 +0000 Tagged with importing - Personal View Talks en-CA Easy script for drag&drop merging of spanned AVCHD .MTS files (in Windows) https://www.personal-view.com/talks/discussion/19340/easy-script-for-dragdrop-merging-of-spanned-avchd-.mts-files-in-windows Mon, 02 Apr 2018 12:15:02 +0000 MrZz 19340@/talks/discussions Today I needed to merge some spanned AVCHD/MTS files (because of the 4gb file soize limit on the fat32 capture card) together into one on my workstation. I just searched for this script which I normally used but since I couldn't find the script on my system, I rewrote it and thought I'd share it. Just for everyone else who has some use for this handy little script here's the code:


echo off
title Merge Files

set /p choice="Enter path to merge to: (eg. C:\video\test.MTS)"

if "%~1"=="" exit
if not "%~1"=="" SET one=%1
if not "%~2"=="" SET two= + %2
if not "%~3"=="" SET three= + %3
if not "%~4"=="" SET four= + %4
if not "%~5"=="" SET five= + %5
if not "%~6"=="" SET six= + %6
if not "%~7"=="" SET seven= + %7
if not "%~8"=="" SET eight= + %8
if not "%~9"=="" SET nine= + %9

copy /b %one%%two%%three%%four%%five%%six%%seven%%eight%%nine% "%choice%"

echo AVCHD Joining Complete.
pause

Just copy this code into a .txt and rename into .bat. Then you can just drag and drop the files, by selecting them and drag the first one on the .bat. You will then be prompted to input a destination path and name. You can merge a total of nine files into one this way.

Cheers!

]]>
QUESTION - GH2 AVCHD Timecode Corruption on Import into FCPX https://www.personal-view.com/talks/discussion/5349/question-gh2-avchd-timecode-corruption-on-import-into-fcpx Sat, 01 Dec 2012 19:34:22 +0000 nyexcuse 5349@/talks/discussions So I have had this issue for a couple weeks now, and I don't know where else to turn.

I hacked my GH2 a few months ago and things have been pretty lovely so far. A couple weeks ago, however, as I was importing some AVCHD files from my SD card (64GB SanDisk Extreme) into Final Cut Pro X and some of them gave me this error upon import:

"Import Failed: The following clip encountered an error during import and is still referencing media on the camera: Clip Name: 2012-12-01 19:21:00 Event: X Original Name: Clip #X Volume: NO NAME"

After looking around, I noticed that the files that presented this issue had a strange timecode. Instead of displaying a normal start time of "00:00:00:00" they started with "23:27:41:06". Only some files are like this, and as far as I can tell it only happens to clips that used lenses that have been adapted to the camera (non-4/3 Panasonic lenses).. Other than that I don't know what's going on.

Has anyone else had this issue? Is there anything I can do to fix it?

Cheers

]]>