Это видео недоступно.
Сожалеем об этом.

FFmpeg Streaming - Next Step: RTMP Configuration and Usage

Поделиться
HTML-код
  • Опубликовано: 15 авг 2024

Комментарии • 30

  • @samuelhalder8472
    @samuelhalder8472 14 дней назад +1

    Wow, can we also steam live camera and stream it on local network? Just like how NDI works.
    We have 4 cameras in a hall which goes to atem and goes to pc, if we can take the input and stream it on network so that we can send it on another hall which is 200 meter away. We will use fiber cable.

    • @devstefit
      @devstefit  14 дней назад

      Yes you could. You can follow the instructions in this video, feeding the input as the camera, respecting the inteface your cameras are connected on the server PC. Some complication may derive on how do you want to get the camera streams: separate or together in a video.
      If separate: you have to create different connections, as different references.
      If together in a video: you can use a complex filter, more reference here ruclips.net/video/Yc16I6i9xDU/видео.html

  • @undergroundnews_dk
    @undergroundnews_dk 10 месяцев назад +1

    Can you make a video guide on to make HTML overlays. Is it possible with filters ? Pipes. Maybe like a virtual screen capture.

  • @AciDDreaM450
    @AciDDreaM450 3 месяца назад

    Bravissimo Stefano, l'accento italiano si sente tanto ma devo dire che sei uno dei + bravi Italiani che ho sentito in merito ad "Accento" (te lo dico da italiano all estero eh ... :)). 'Scolta ho una domanda ... ma per entrare un po + sul tecnico dove mi consigli di guardare? Intendo sulle varie opzioni di ffmpeg, mux / demux / encoding etc etc. Online non trovo tanto materiale in merito (tanta teoria, ma parzialemtne declinabile poi sui vari softwares). Ciao grande, bravo, Luca.

    • @devstefit
      @devstefit  3 месяца назад

      Buongiorno Luca, grazie mille per il feedback! Ebbene sì, bisogna lavorare ancora un po' sull'inglese per essere un po' più neutro. Mi fa piacere che il video sia piaciuto.
      Per andare più nel dettaglio su queste cose ci sono le guide di FFmpeg ma anche un paio di testi. Uno che posso consigliare è FFmpeg - From Zero to Hero by Nick Ferrando.
      Più informazioni sul sito relativo ffmpegfromzerotohero.com/
      In futuro ho in programma di trattare qualcosa di più profondo e tecnico comunque, tempo permettendo. Stay tuned!

  • @buiquangtuyen9616
    @buiquangtuyen9616 2 месяца назад +1

    i setup in ubuntu, but when in run ffmpeg command with streaming to youtube via rtmp, then i check pid using of ubuntu. it show alot of pids are using. not like in mac, it only use one pid. can you explain for it ?

    • @devstefit
      @devstefit  2 месяца назад

      It may depend on the way it is compiled. I did not go so deep in the implementation. Is the Linux implementation eating more resources than the Mac one?

  • @CONGOMONPAYSTV
    @CONGOMONPAYSTV Год назад +1

    From 8 minutes, where did you get terminal to config and update ubuntu and nginx ????
    That tetminal is command ? Cmd from laptop ?

    • @devstefit
      @devstefit  2 месяца назад

      I ran the Ubuntu Linux on a virtual machine, to show both on the same screen. I usually work like this on my videos 😅 Sorry for the confusion!

  • @knowledgeseeker83
    @knowledgeseeker83 11 месяцев назад +2

    Can you please explain this process using srt protocol?

    • @devstefit
      @devstefit  2 месяца назад

      It is on the list of future videos. Will be out sooner or later

  • @undergroundnews_dk
    @undergroundnews_dk 11 месяцев назад

    SRT is great and fast like UDP ;)

  • @syncsolutions-softwares
    @syncsolutions-softwares Год назад +1

    Hello,
    Can we access the stream outside the network?

    • @devstefit
      @devstefit  2 месяца назад

      Yes you can! If you set the firewalls properly and the server is accessible from outside, you should access to the service from outside without any problems. Actually, this is how it is intended to be used.

  • @gt-simdriver6716
    @gt-simdriver6716 2 месяца назад

    Your notes file is missing the -f flv

    • @devstefit
      @devstefit  2 месяца назад

      Thanks for pointing it out! Corrected already

  • @rzwanramazan3927
    @rzwanramazan3927 Год назад

    thank😍

  • @Xulufone
    @Xulufone 5 месяцев назад

    big buck bunny - the most converted video file 😂

    • @devstefit
      @devstefit  5 месяцев назад

      True story! 🤣

  • @lands1459
    @lands1459 4 месяца назад

    is there another solution to this? nginx installs and runs, but i can't stream to it. OBS says the stream url is invalid. tried nmap on my server and the rtmp is open and alive

    • @devstefit
      @devstefit  2 месяца назад

      The system is meant to transmit streams from the server to the client. You set everything correctly, maybe you are using it on the other way around.

    • @lands1459
      @lands1459 2 месяца назад

      @@devstefit not sure what you mean but i got it to work. i stream to the rtmp server with obs and i can watch the stream on as many clients as i'd like

    • @devstefit
      @devstefit  2 месяца назад

      @@lands1459 Sorry, I misunderstood your question. I understood you wanted to use the server to receive streams. I am glad you solved! And thanks for your feedback!

  • @patrickpanhuysen9618
    @patrickpanhuysen9618 Год назад

    I am getting this message after adding rtmp text with nano, unknown directive "rtmp" in /etc/nginx/nginx.conf. File test failed. Got a solution ?

    • @devstefit
      @devstefit  Год назад +1

      Sorry to hear that... Which operating system are you using? This is valid for Ubuntu 22.04 and derivatives: if you are using another Linux version there might be the need load its RTMP module manually. More info available here:
      stackoverflow.com/a/42044576
      github.com/arut/nginx-rtmp-module/issues/1201
      I hope it helps!

    • @patrickpanhuysen9618
      @patrickpanhuysen9618 Год назад

      @@devstefit Thanks for the advice, looks like i'm not the only one with this problem. Think it's a symlink issue between nginx and the rtmp module.

    • @devstefit
      @devstefit  Год назад

      Thanks for notifying! I hope the troubleshooting might be useful for somebody