I need to find a way to playback a number of .dv4 files on Ubuntu 12.04 and Fedora 20, possibly after having converted them to a more conventional format. So far I have managed to convert the files with
mencoder -fps 25 ./input.dv4 -ovc copy -oac copy -o ./output.avi
which does a decent job, as does going the mplayer
way:
mplayer -fps input.dv4
The problem I'm facing is that the output video in both cases has no timestamp characteristic of most CCTV videos, having which is crucial for my purposes. The question, then, is how to get that timestamp in the output file.
EDIT: I'm not, by the way, completely certain that I'm using the term "timestamp" correctly: what I mean is the date-and-time line, depicted in the running video, of the recorded event(s). I'm including a link to a sample file.
mencoder
removed the timestamp? You might tryffmpeg
instead, I know it can be built to support.avi
and.dv
, don't know about.dv4
. – goldilocks Feb 17 '14 at 15:02mencoder
the output has no time code/stamp/whatever. in re of theffmpeg
option, i'm yet to get acquainted with howffmpeg
works. – Pavel Rudnev Feb 17 '14 at 19:43