Quote:
Originally Posted by
space2001 
dr1394 that is great only problem with that is if I cut it wrong I could cut it accross one of the headers and then can screw up the file.
Yes, but you could manually check the end of each file. Or you could check the reassembled file with h264_parse and grep.
http://www.w6rz.net/h264_parse.ziphttp://gnuwin32.sourceforge.net/packages/grep.htm
For example:
C:\\xfer>h264_parse bits0001.mpv | grep time_scale
time_scale: 48000
time_scale: 48000
time_scale: 48000
time_scale: 48000
C:\\xfer>h264_parse bits0001.mpv | grep num_units
num_units_in_tick: 1001
num_units_in_tick: 1001
num_units_in_tick: 1001
num_units_in_tick: 1001
C:\\xfer>h264_parse bits0001.mpv | grep pict_struct
pict_struct: 0
pict_struct: 0
pict_struct: 0
pict_struct: 0
C:\\xfer>h264_parse bits0001.mpv | grep gaps_in_frame
gaps_in_frame_num_value_allowed_flag: 0
gaps_in_frame_num_value_allowed_flag: 0
gaps_in_frame_num_value_allowed_flag: 0
gaps_in_frame_num_value_allowed_flag: 0
Since it's a huge file, save the output into a file.
C:\\xfer>h264_parse bits0001.mpv | grep time_scale > check_time_scale.txt
Ron