stream-utils

Des scripts pour streamer - retour accueil

git clone git://bebou.netlib.re/stream-utils
Log | Files | Refs |

webcam (359B)


      1 #! /bin/sh
      2 
      3 ffmpeg \
      4   -f v4l2 -video_size 426x240 -framerate 10 -i /dev/video0 \
      5   -f alsa -i default \
      6   -f webm -cluster_size_limit 2M -cluster_time_limit 5100 -content_type video/webm \
      7   -c:a libvorbis -b:a 46K \
      8   -c:v libvpx -b:v 200K -crf 30 -g 10 -deadline realtime -threads 4 \
      9   icecast://source:password@bebou.netlib.re:1111/coucou 2> /dev/null
     10 
     11