Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | Next revisionBoth sides next revision | ||
| hardware:tronsmart_pavo_m9 [2017/05/11 16:36] – [Tronsmart Pavo M9] add link to adroid grabber overview zuntrax | hardware:tronsmart_pavo_m9 [2017/09/30 19:04] – [ZidoStreamer] andi | ||
|---|---|---|---|
| Line 46: | Line 46: | ||
| ==== Scripts | ==== Scripts | ||
| Here are some example command lines for ffmpeg that we use: | Here are some example command lines for ffmpeg that we use: | ||
| + | |||
| + | ===== on android box | ||
| + | |||
| + | stream to ngnix on encoder box | ||
| <code bash> | <code bash> | ||
| / | / | ||
| Line 51: | Line 55: | ||
| ZidoStreamer is set to a video bitrate of 20 Mbit/s and 26 fps. With 25 fps, there is flicker in voctomix. Audio is set so 320 kbit/s, but isn't used. | ZidoStreamer is set to a video bitrate of 20 Mbit/s and 26 fps. With 25 fps, there is flicker in voctomix. Audio is set so 320 kbit/s, but isn't used. | ||
| - | RTMP stream to voctomix: | + | |
| + | |||
| + | ====== on encoder cube | ||
| + | |||
| + | cd / | ||
| + | wget https:// | ||
| + | |||
| + | |||
| + | |||
| + | ======= ffmpeg variant | ||
| + | RTMP stream to voctomix | ||
| <code bash> | <code bash> | ||
| #!/bin/sh | #!/bin/sh | ||
| Line 75: | Line 89: | ||
| </ | </ | ||
| This script has the advantage of making audio from the HDMI stream available to voctomix, so that audio and video are in sync. This is particularly useful when the lecturer plays a video with a lot of spoken text. This audio source can then be selected in voctomix. | This script has the advantage of making audio from the HDMI stream available to voctomix, so that audio and video are in sync. This is particularly useful when the lecturer plays a video with a lot of spoken text. This audio source can then be selected in voctomix. | ||
| + | |||
| + | |||
| + | ======= gstreamer variant | ||
| Alternative version using gstreamer: | Alternative version using gstreamer: | ||
| Line 101: | Line 118: | ||
| tcpclientsink host=localhost port=10002 | tcpclientsink host=localhost port=10002 | ||
| </ | </ | ||
| - | |||