Ian Holb
September 1st, 2010, 02:37 AM
Hopefully, they will fix it in firmware...
The problem: Files recorded in .WAV format are NOT Broadcast Wave Format compatible, eg. the H1 does NOT correctly timestamp the audio files with the proper timecode, even though in the Zoom literature it says it does. This would be incorrect. Without the timestamps, you will not be able to find the right sync points in your editor. The only reference is looking at the "Modified Date", but this can be altered depending if you just open these files in certain audio editing programs, like Soundbooth CS5.
I've found a workaround on Mac/FCP.
Import your audio files into FCP. Select an audio clip (ie. ZOOM0001.WAV) in the bin, and go to Modify > Timecode. Frame to Set should be set to First. Enter the proper timecode. You'll need to refer to the Modified Date that's displayed in the Finder Info. Unfortunately, Finder only displays the Hour and Minutes, but not the seconds. Without the seconds, your timecode would be just an approximation.
To find the seconds, I found an AppleScript that does this very thing.
In Applescript Editor, copy this code:
--------------------------------
tell application "Finder" to repeat with MyItem in (get selection)
do shell script "mdls " & quoted form of POSIX path of (MyItem as text) & " | grep 'kMDItemContentModificationDate' | awk '/ = / {print $3,$4}'"
tell the result to set ModDate to text 3 thru 4 & text 6 thru 7 & text 9 thru 10 & "_" & text 12 thru 13 & "-" & text 15 thru 16 & "-" & text 18 thru 19
display dialog "Modification date: " & ModDate with title (get name of MyItem)
end repeat
--------------------------------
Select your audio file in the Finder, run the AppleScript, and it will show you the Finder info in HH:MM:SS format (there is no display for frames, unfortunately, but it is close enough).
Enter this time into FCP's modify timecode dialog box and you should have a very close by the second TC of your audio clips.
Hope that helps anyone else experiencing this issue.
The problem: Files recorded in .WAV format are NOT Broadcast Wave Format compatible, eg. the H1 does NOT correctly timestamp the audio files with the proper timecode, even though in the Zoom literature it says it does. This would be incorrect. Without the timestamps, you will not be able to find the right sync points in your editor. The only reference is looking at the "Modified Date", but this can be altered depending if you just open these files in certain audio editing programs, like Soundbooth CS5.
I've found a workaround on Mac/FCP.
Import your audio files into FCP. Select an audio clip (ie. ZOOM0001.WAV) in the bin, and go to Modify > Timecode. Frame to Set should be set to First. Enter the proper timecode. You'll need to refer to the Modified Date that's displayed in the Finder Info. Unfortunately, Finder only displays the Hour and Minutes, but not the seconds. Without the seconds, your timecode would be just an approximation.
To find the seconds, I found an AppleScript that does this very thing.
In Applescript Editor, copy this code:
--------------------------------
tell application "Finder" to repeat with MyItem in (get selection)
do shell script "mdls " & quoted form of POSIX path of (MyItem as text) & " | grep 'kMDItemContentModificationDate' | awk '/ = / {print $3,$4}'"
tell the result to set ModDate to text 3 thru 4 & text 6 thru 7 & text 9 thru 10 & "_" & text 12 thru 13 & "-" & text 15 thru 16 & "-" & text 18 thru 19
display dialog "Modification date: " & ModDate with title (get name of MyItem)
end repeat
--------------------------------
Select your audio file in the Finder, run the AppleScript, and it will show you the Finder info in HH:MM:SS format (there is no display for frames, unfortunately, but it is close enough).
Enter this time into FCP's modify timecode dialog box and you should have a very close by the second TC of your audio clips.
Hope that helps anyone else experiencing this issue.