Ho avuto qualche difficoltà con l'esecuzione di uno Screencast live su Linux. Ho trovato jtvlc e ho provato a usarlo, ma ogni volta che lo uso il flusso esce vuoto o ritardato con latenza estremamente alta. Ho una connessione Internet veloce e un computer veloce, ma forse sto tassando troppo?
Qualche idea su cosa potrei fare di sbagliato?
# 1. Get an account on http://www.justin.tv/
# 2. Copy streaming key from: http://www.justin.tv/broadcast/adv_other
# 2. Install VLC: http://www.videolan.org/vlc/
# 3. Get Win/Mac/Lin Stream Client: \
# http://apiwiki.justin.tv/mediawiki/index.php/Linux_Broadcasting_API
# 4. Adjust the vlc parameters to your liking and run VLC like this
#!/bin/bash
cvlc screen:// --input-slave=pulse:// \
--screen-width 1920 \
--screen-height 1080 \
--screen-fps 5 \
-v input_stream \
--sout='#duplicate{ dst="transcode{ scale=1, venc=x264{ keyint=60 }, vcodec=h264, vb=600, acodec=mp4a, ab=32, channels=2, samplerate=22050 } :rtp{dst=127.0.0.1,port=1234,sdp=file:///tmp/vlc.sdp} "}' \
--sout-transcode-threads=4 & sleep 2
# 5. Run JTVLC to stream like this:
./jtvlc/jtvlc omnipotententity censored /tmp/vlc.sdp
# Notes:
#- If you want to see what you're about to stream add 'dst=display, '
# before 'dst="transcode['
# More about the VLC parameters: http://wiki.videolan.org/Documentation:Modules/screen
Aggiornare:
Ho risolto il mio problema ... per la maggior parte. Stavo cercando di mettere troppe informazioni attraverso il mio upstream. Da allora ho ridotto la mia risoluzione e ho usato l'opzione crf per x264.
Ora la mia sceneggiatura si presenta così:
# 1. Get an account on http://www.justin.tv/
# 2. Copy streaming key from: http://www.justin.tv/broadcast/adv_other
# 2. Install VLC: http://www.videolan.org/vlc/
# 3. Get Win/Mac/Lin Stream Client: \
# http://apiwiki.justin.tv/mediawiki/index.php/Linux_Broadcasting_API
# 4. Adjust the vlc parameters to your liking and run VLC like this
#!/bin/bash
cvlc screen:// --input-slave=pulse:// \
--screen-width 1920 \
--screen-height 1080 \
--screen-fps 5 \
-v input_stream \
--sout='#duplicate{ dst="transcode{ scale=1, width=1280, height=720, venc=x264{ keyint=60, crf=35 }, vcodec=h264, acodec=mp4a, ab=32, channels=2, samplerate=22050 } :rtp{dst=127.0.0.1,port=1234,sdp=file:///tmp/vlc.sdp} "}' \
--sout-transcode-threads=4 & sleep 2
# 5. Run JTVLC to stream like this:
./jtvlc/jtvlc omnipotententity redacted /tmp/vlc.sdp
# Notes:
#- If you want to see what you're about to stream add 'dst=display, '
# before 'dst="transcode['
# More about the VLC parameters: http://wiki.videolan.org/Documentation:Modules/screen
Detto questo, ho ancora qualche problema. A volte quando cambio un po 'le cose sullo schermo non riesce a codificarle correttamente. Il che è strano, perché lo screencasting tramite Skype 4.0 funziona bene. Quindi ci sono ancora alcuni nodi da risolvere.
Lascio aperta la taglia e sto attivamente provando le cose menzionate. Assegnerò comunque la taglia, anche se mi sono risolto da solo.