| 90 | Here's an alternative that will save a raw dv file with the output ''and'' stream to an icecast server (beware - this will create a file that consumes a lot of disk space). |
| 91 | |
| 92 | {{{ |
| 93 | dvsink-command -- tee out.dv | ffmpeg2theora - -f dv -F 25:5 --speedlevel 0 -v 4 -a 0 -c 1 -H 9600 -o - | oggfwd ICECASTHOST ICECASTPORT ICECASTPASS /mountpoint.ogg |
| 94 | }}} |
| 95 | |
| 96 | And here's an alternative that is useful if you are streaming using a limited bandwidth upstream connection, you can replace the part starting with ffmpeg2theora with the following. It reduces the size of output to 360x240 (from twice that size) and it limits from 25 frames per second to just 5 frames per second. |
| 97 | |
| 98 | {{{ |
| 99 | ffmpeg2theora - -f dv -F 5 --speedlevel 0 --width 360 --height 240 -v 4 -a 0 -c 1 -H 9600 -o - |
| 100 | }}} |
| 101 | |