Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
projects:vlc_powered_streaming [2017/02/10 22:07] over23 mosaic streaming from VLC == pain in the ass |
projects:vlc_powered_streaming [2017/06/13 19:56] (current) over23 |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| * http://www.guidingtech.com/ebooks/vlc-media-player/ | * http://www.guidingtech.com/ebooks/vlc-media-player/ | ||
| * http://alex.mamchenkov.net/2014/11/27/vlc-mosaic-multiple-rstp-streams/comment-page-1/ | * http://alex.mamchenkov.net/2014/11/27/vlc-mosaic-multiple-rstp-streams/comment-page-1/ | ||
| + | * to test for streaming purposes instead of VLC : https://obsproject.com/ | ||
| + | * brmlabi stream: https://brmlab.cz/user/jenda/duga | ||
| ====== HTTP streaming ====== | ====== HTTP streaming ====== | ||
| Line 102: | Line 104: | ||
| </code> | </code> | ||
| - | Na druhé straně ve vlc pustit network stream z adresy ''rtsp://ip_addr_rbpi:8554/live.ts'' | + | Na druhé straně ve vlc pustit network stream z adresy <code>rtsp://ip_addr_rbpi:8554/live.ts</code> |
| + | ==== STREAM POMOCI FFMPEG ==== | ||
| + | <code> | ||
| + | ffmpeg -re -ar 44100 -ac 2 -acodec pcm_s16le -f alsa -ac 2 -i hw:1,0 -i /dev/video0 | ||
| + | -vcodec h264_omx -vf scale=-1:480 -vb 300k -acodec aac -ab 128k -g 50 -strict experimental -f | ||
| + | flv rtmp://a.rtmp.youtube.com/live2/XXXXXXXXXXXXXXX | ||
| + | </code> | ||