Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть Multistream to Facebook, YouTube, on a $35 Raspberry Pi using NGINX with RTMP

  • Ry Can Do It
  • 2020-11-06
  • 4839
Multistream to Facebook, YouTube, on a $35 Raspberry Pi using NGINX with RTMP
raspberrypirtmphowtolivestreamingmulticastnginx
  • ok logo

Скачать Multistream to Facebook, YouTube, on a $35 Raspberry Pi using NGINX with RTMP бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно Multistream to Facebook, YouTube, on a $35 Raspberry Pi using NGINX with RTMP или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку Multistream to Facebook, YouTube, on a $35 Raspberry Pi using NGINX with RTMP бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео Multistream to Facebook, YouTube, on a $35 Raspberry Pi using NGINX with RTMP

Why pay for a monthly service like Restream or Castr when you can multi stream to RTMP platforms such as Facebook, YouTube and twitch using a $35 Raspberry Pi! In this video I will show you step by step how to install NGINX with RTMP and get multistreaming in no time.

0:00 intro
8:21 initial configuration
11:24 install stunnel*
14:30 youtube key
17:00 facebook key
18:45 streaming FB
19:51 streaming youtube
21:08 streaming both platforms
22:46 statistics (optional)

*stunnel is required to stream to Facebook due to RTMPS

Commands/code to copy/paste
-------------------------
Initial setup & test
-------------------------
sudo apt update
sudo apt install nginx
sudo /etc/init.d/nginx start
Check if webserver is up using your browser

sudo apt install libnginx-mod-rtmp
sudo nano /etc/nginx/nginx.conf
Paste the following at the bottom

rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off;
}
}
}

sudo nginx -t
sudo systemctl restart nginx

OBS
rtmp://raspberryipaddress/live
VLC
rtmp://raspberryipaddress:1935/live/test

-------------------------
Add Facebook/YouTube configuration
-------------------------
sudo nano /etc/nginx/nginx.conf
Replace our existing rtmp settings

rtmp {
server {
listen 1935;
chunk_size 4096;
application facebook {
live on;
record off;
meta copy;
push rtmp://127.0.0.1:19350/rtmp/facebook_stream_key;
}
application youtube {
live on;
record off;
meta copy;
push rtmp://a.rtmp.youtube.com/live2/youtube_stream_key;
}
application alllive {
live on;
record off;
meta copy;
push rtmp://a.rtmp.youtube.com/live2/youtube_stream_key;
push rtmp://127.0.0.1:19350/rtmp/facebook_stream_key;
}
application live {
live on;
record off;
}
}
}

-------------------------
Install Stunnel
-------------------------
*Required to stream to Facebook RTMPS
sudo apt install stunnel4

sudo nano /etc/stunnel/stunnel.conf

[fb-live]
client = yes
accept = 127.0.0.1:19350
connect = live-api-s.facebook.com:443
verifyChain = no


sudo /etc/init.d/stunnel4 restart

-------------------------
Setup statistics
-------------------------
sudo nano /etc/nginx/sites-enabled/default

This provides RTMP statistics in XML at
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
auth_basic "Restricted Content";
auth_basic_user_file /etc/nginx/.htpasswd;
}

XML stylesheet to view RTMP stats. Copy stat.xsl wherever you want and put the full directory path here
location /stat.xsl {
root /var/www/html/;
}


cd /var/www/html
sudo nano stat.xsl

Link to stat.xsl to copy and paste
https://github.com/arut/nginx-rtmp-mo...

Let's get social
---------------------------------------
INSTAGRAM ►►   / rycandoit  
TWITTER ►►   / rycandoit  
--------------------------------------

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]