| | 14 | Here is what another person once did for broadcast: |
| | 15 | |
| | 16 | {{{ |
| | 17 | ffmpeg -f dshow -i video="Virtual-Camera" -preset ultrafast -vcodec libx264 -tune zerolatency -b 900k -f mpegts udp://10.1.0.102:1234 |
| | 18 | }}} |
| | 19 | |
| | 20 | And here is what another person [http://web.archiveorange.com/archive/v/DUtyPSinPqSIxjhedGQd did]: |
| | 21 | {{{ |
| | 22 | ffmpeg -f dshow -i video="screen-capture-recorder":audio="Stereo Mix (IDT High Definition" \ |
| | 23 | -vcodec libx264 -preset ultrafast -tune zerolatency -r 10 -async 1 -acodec libmp3lame -ab 24k -ar 22050 -bsf:v h264_mp4toannexb \ |
| | 24 | -maxrate 750k -bufsize 3000k -f mpegts udp://192.168.5.215:48550 |
| | 25 | }}} |
| | 26 | |
| | 27 | NB that they also (for directshow devices) had to adjust the rtbufsize in that example. |
| | 28 | |
| | 29 | You can see a description of what some of these means, (for example bufsize, bitrate settings) in the [[Encode/H.264]]. |
| | 30 | |
| | 31 | |
| 36 | | Here is what another person once did: |
| 37 | | |
| 38 | | {{{ |
| 39 | | ffmpeg -f dshow -i video="Virtual-Camera" -vcodec libx264 -tune zerolatency -b 900k -f mpegts udp://10.1.0.102:1234 |
| 40 | | }}} |
| 41 | | |
| 42 | | And here is what another person [http://web.archiveorange.com/archive/v/DUtyPSinPqSIxjhedGQd did]: |
| 43 | | {{{ |
| 44 | | ffmpeg -f dshow -i video="screen-capture-recorder":audio="Stereo Mix (IDT High Definition" \ |
| 45 | | -vcodec libx264 -preset ultrafast -tune zerolatency -r 10 -async 1 -acodec libmp3lame -ab 24k -ar 22050 -bsf:v h264_mp4toannexb \ |
| 46 | | -maxrate 750k -bufsize 3000k -f mpegts udp://192.168.5.215:48550 |
| 47 | | }}} |
| 48 | | |
| 49 | | NB that they also (for directshow devices) had to adjust the rtbufsize in that example. |
| 50 | | |
| 51 | | You can see a description of what some of these means, (for example bufsize, bitrate settings) in the [[Encode/H.264]]. |