Changes between Version 8 and Version 9 of StreamDesktop
- Timestamp:
- Aug 19, 2014, 3:06:49 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StreamDesktop
v8 v9 50 50 You can also specify video and audio quality by changing -v and -a (the higher the value the better the quality) respectively. 51 51 52 53 54 And here we have a variation of the same scenario, if you wish to stream an audio only session. 55 56 {{{ 57 export SONIDO=$(pactl list sources|awk '/Name:/ {print $2;exit}') 58 avconv -f pulse -i $SONIDO -f ogg - |\ 59 ffmpeg2theora - --no-skeleton --novideo -o - |\ 60 oggfwd -n 'NOMBRE' -g 'GENERO' -d 'DESCRIPCION' a.stream.mayfirst.org 8000 source /stream-de-prueba.ogg 61 }}} 62 63 52 64 For more about the parameters you can use please refer to the man pages of every command 53 65