Advanced search

Medias (91)

Other articles (104)

  • Encoding and processing into web-friendly formats

    13 April 2011, by

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Gestion de la ferme

    2 March 2010, by

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 March 2010, by

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3); le plugin champs extras v2 nécessité par (...)

On other websites (10861)

  • Stream Live IP cam to Youtube on FFMPEG

    24 July 2018, by Håkon Berntsen

    I`m streaming 2 IP cams (live webcam for tourists) from 2 Raspberry Pi, using FFMPEG (version 3.4.2) to YouTube. IPcam no.1 and Raspberry no.1 fails once a month or so, and that issue is solved with a Cron job that restarts the scripts if the service is not running.

    The stream from IPcam no.2 fail after 1 hour to maybe 24 hours, even though its the same FFMPEG command and same setup.
    FFMPEG keep streaming and the service is running on the Raspberry. YouTube stop receiving the stream, but there is no logs to be found at YouTube.

    The bandwidth is not an issue (fiber), and the cameras are both connect with Cat5 cable. The only way to restart the stream (so YouTube restart the stream) is to restart the service (since its an cronjob that restart the service only if the service is no longer running, I`m forced to do a pkill). I have also tried to set up another cron job that kills the service every 15 minutes, but its not really an elegant solution.

    Both cameras streams H264.

    Stream no.2 can be seen here: https://www.youtube.com/embed/live_stream?channel=UCEJJjA5IsjE0JjuiqfxZFaw

    The command I`m using is:

    COMMAND="sudo ffmpeg  -f lavfi -i anullsrc -thread_queue_size 512   -rtsp_transport tcp  -i ${RTSP_URL}  -vcodec libx264   -pix_fmt + -c:v copy -c:a aac  -f flv ${YOUTUBE_URL}/${YOUTUBE_KEY}"

    I hope there is someone that can help with ideas to the command or to why the stream fail.

  • Youtube Live streaming using ffmpeg container webm

    18 December 2017, by P Akhtar

    I want to stream youtube live using webm container vp8 codec but enable to done using code or command.

        ffmpeg -i E:/Video/Waka.mp4 -g 48 -f webm -vcodec libvpx-vp9  rtmp://youtube live url

    its work fine with flv

  • Grab sound from a youtube stream and restream on Twitch

    22 May 2021, by Mangaku

    https://chillhop.com/ is sharing "stream-safe" musics (as far you share in your twitch bio taht the sound come from them).

    


    They have a Youtube channel: https://www.youtube.com/channel/UCOxqgCwgOqC2lMqC5PYz_Dg
where they have a non stop stream live music.

    


    I'd like to grab this sound and reshare it with my twitch channel.
for now my script look like
ffmpeg -nostdin -re -stream_loop -1 -i /home/ffmpeg/TFCv2.mp4 -stream_loop -1 -i /home/ffmpeg/upbeat.m4a -c:v libx264 -preset veryfast -b:v 3000k -maxrate 3000k -bufsize:v:0 4500k -f flv rtmp://cdg.contribute.live-video.net/app

    


    Guess i have to use youtube-dl to get the sound from youtube live and grab it on ffmpeg. But... i dont understand how that works.
Any help ?