Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (53)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    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 (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (3207)

  • Grab sound from a youtube stream and restream on Twitch

    22 mai 2021, par 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 ?

    


  • Youtube Live streaming using ffmpeg container webm

    18 décembre 2017, par 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

  • Stream Live IP cam to Youtube on FFMPEG

    24 juillet 2018, par 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.