Hi,
I am looking tools which shows the .mov file timecode track information.(tmcd atom).
What is my thought in .mov files there is usually video audio and a timecode track. The timecode track gives a start time value. This is the timecode value for first video frame and rest of the video frame timecode, calculate with respect to time scale value and duration from the corresponding track header.
Please share a tool to find the start time of .mov file and correct me if any difference in my thought.
Thanks
Dave
+ Reply to Thread
Results 1 to 5 of 5
-
-
I use ffprobe to understand the anatomy of the file.
ffprobe.exe -show_streams test.mov will give the following info about the timecode track
[STREAM]
index=5
codec_name=unknown
codec_long_name=unknown
profile=unknown
codec_type=data
codec_time_base=1/25
codec_tag_string=tmcd
codec_tag=0x64636d74
id=N/A
r_frame_rate=0/0
avg_frame_rate=0/0
time_base=1/25
start_time=0.000000
duration=52.640000
bit_rate=N/A
nb_frames=1
nb_read_frames=N/A
nb_read_packets=N/A
TAG:language=eng
TAG:handler_name=Apple Alias Data Handler
TAG:timecode=09:59:40:00
[/STREAM]
ffprobe.exe -show_packets test.mov
[PACKET]
codec_type=data
stream_index=5
pts=0
pts_time=0.000000
dts=0
dts_time=0.000000
duration=1316
duration_time=52.640000
convergence_duration=N/A
convergence_duration_time=N/A
size=4
pos=349757537
flags=K
[/PACKET]
Can anybody clarify following questions ?
The issue is when i check the pos = 349757537 in the file i got the value 00 0D B9 AC 00....[Byte value in the file]
The TAG:timecode=09:59:40:00 how can i match this value to the file data.[I suspect endianness change?]
Is there any different meaning for TAG:timecode.?
How can find TAG:timecode value from the file? or TAG:timecode is derived from any other values?
Thanks
Dave -
Quicktime Pro gives you the option to see the timecode track if you click the counter. Not sure about the free version.
What are you actually hoping to accomplish? -
I tried to read the start time code from the file.
In byte format as it is present in the bit stream.
Regards
Dave
Similar Threads
-
Program to replace timecode in srt with timecode from another srt
By TehBotolSOsro in forum SubtitleReplies: 19Last Post: 13th Sep 2012, 12:28 -
How do I add a datecode/timecode to a MOV video?
By Zorro_100 in forum Newbie / General discussionsReplies: 0Last Post: 21st Apr 2008, 10:05 -
Converting drop frame timecode to non drop frame timecode, and vice versa
By picrade in forum ProgrammingReplies: 1Last Post: 1st Mar 2008, 04:22 -
How to add another audio track to a MOV video file for macs
By VidHunter in forum MacReplies: 7Last Post: 31st Oct 2007, 00:36 -
more info on no sound problem with mov to flv
By chrishawaii in forum ffmpegX general discussionReplies: 0Last Post: 17th Aug 2007, 16:32