Page 1 of 1

Video Download

Posted: Fri Nov 12, 2004 5:54 pm
by wheelbarrow
Hi Phil,

Haven't seen it so i'll post a request.

When i click the make video it's shows it to me via quick time plugin, i would like to be able to download the created video so i can attach it to an e-mail.

Regards


Paul

Posted: Sat Nov 13, 2004 5:38 pm
by zoneminder
Ok, noted. I'll add it to the list.

Phil,

Posted: Sat Nov 20, 2004 9:03 pm
by dexter
Hello Phil,

I had some problems with the creation of the video's. First I was 'hit' by the ffmpeg "MPEG1/2 doesnt support xx/1 fps" bug. Second some video's gave problems because of some characters (? and ,) in the video description.

I changed zmvideo.pl to use another filename and to use mp4 files instead of mpeg1.

#my $video_file = "$video_name.mpg";
my $video_file = $event->{MonitorId}."_".$event->{Id}.".mp4";

(For best results I limit by camera's to 10fps and added "-b 300" to the ffmpeg options)

Joris