Это, вероятно, выстрел в темноте, но у меня есть ощущение, что
- screen-fps 5 \
должна быть проблема. попробуйте изменить 5 на более высокое значение, например, 50 и посмотреть, что произойдет.
У меня были некоторые трудности с запуском Live Screencast под Linux. Я нашел jtvlc и попытался использовать его, но всякий раз, когда я его использую, поток выходит либо пустым, либо с запаздыванием с чрезвычайно высокой задержкой. У меня быстрое интернет-соединение и быстрый компьютер, но, может быть, я облагаю налогом слишком много?
Любые идеи о том, что я мог бы делать неправильно?
# 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 "}' \ --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
Обновить:
Я исправил свою проблему ... по большей части. Я пытался поместить слишком много информации через мой апстрим. С тех пор я уменьшил свое разрешение и использовал опцию crf для x264.
Теперь мой скрипт выглядит так:
# 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 "}' \ --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
При этом у меня все еще есть несколько проблем. Иногда, когда я изменяю материал на экране, он не может правильно кодироваться. Что странно, потому что скринкаст через скайп 4.0 работает просто отлично. Так что есть еще несколько перегибов, чтобы работать.
Я оставляю награду открытой и активно пробую упомянутое. Я все еще назначу награду, хотя я сам решил.
Это, вероятно, выстрел в темноте, но у меня есть ощущение, что
- screen-fps 5 \
должна быть проблема. попробуйте изменить 5 на более высокое значение, например, 50 и посмотреть, что произойдет.
Попробуй это..!
# 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:// \ --screen-width 1576 \ --screen-height 886 \ --screen-fps 5 \ --screen-caching 200 \ --screen-top 75 \ -v input_stream \ --sout='#duplicate{ dst="transcode{ scale=1, width=630, height=354, venc=x264{ keyint=60 }, codec=h264, vb=600, acodec=mp4a, ab=32, channels=2, samplerate=22050 } :rtp "}' \ --sout-transcode-threads=2 & # 5. Run JTVLC to stream like this: jtvlc justintvusername streamkey /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
Если это не сработает, вы можете попробовать Live Desktop Streaming через DLNA в GNU / Linux .