Videostream mit VLC aufnehmen

http://www.dedoimedo.com/computers/vlc-streaming.html

Stream eintragen- > record, aufnahme wird in home/addi/Videos eingetragen

http://cam-01.doldernetwork.ch/mjpg/video.mjpg?camera=1&date=0&clock=0&textstring=

http://wiki.robotz.com/index.php/Recording_Video_With_VLC

http://superuser.com/questions/613368/how-to-set-format-vlc-player-uses-when-recording

http://www.toptrix.net/2012/08/screen-capture-vlc-media-player.html

 

 

 

Videostream Einzelbilder speichern

http://cam-01.doldernetwork.ch/axis-cgi/mjpg/video.cgi

http://cam-01.doldernetwork.ch/mjpg/video.mjpg

http://cam-01.doldernetwork.ch/jpg/image.jpg

Auflösung

http://cam-01.doldernetwork.ch/jpg/image.jpg?camera=1&resolution=640×480

ohne Textzusatz

http://cam-01.doldernetwork.ch/jpg/image.jpg?camera=1&resolution=640×480&date=0&clock=0&textstring=

mit bestimmter Position

http://cam-01.doldernetwork.ch/jpg/image.jpg?camera=1&resolution=640×480&date=0&clock=0&cgotoserverpresetname=Eis_mitte&camera=1&textstring=

http://cam-01.doldernetwork.ch/axis-cgi/com/ptz.cgi?gotoserverpresetname=Eis_mitte&camera=1

http://cam-01.doldernetwork.ch/axis-cgi/com/ptz.cgi?gotoserverpresetname=Eis_links1&camera=1

Direkter Aufruf im Browser bewirkt, dass Kamera verschoben wird.

Wie kann ich dasselbe aus einem php-Script heraus erreichen?

 

 

in VLC öffnen möglich

get image from mjpg/video.cgi

http://stackoverflow.com/questions/21755542/take-images-from-video-stream

http://www.ispyconnect.com/man.aspx?n=Axis

 

 <?php
print("start");
$timestamp = time();
$dateiname=$timestamp.".jpg";
copy("http://cam-01.doldernetwork.ch/jpg/image.jpg?camera=1&resolution=1280×720&date=0&clock=0&textstring=", $dateiname);
print("done");
?>