Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (9070)

  • ffmpeg streaming to youtube becomes slow and starts buffering

    13 août 2022, par Syphax

    I'm using FFmpeg to broadcast to YouTube via rtmp.

    


    I'm using a cloud computing instance.

    


    Whether I put an HD video or low quality to broadcast, at the beginning it says that all is good and connection is Excellent, but after about 3 hours it becomes slow and starts to cut.

    


    I don't understand why this is happening, and if you know guys any tips to fix that.
Thanks...

    


  • FFMPEG command runs but youtube livestream is not displayed [closed]

    21 septembre 2023, par Ngọc Hoa Dương

    I have a video on google drive and I use the ffmpeg command to livestream it on youtube
    
ffmpeg.exe -stream_loop -1 -re -i "https://drive.google.com/uc?export=preview&id=1rfKpTYrV62FnuZsfeWc96zt3Xl6NhZ0v" -vcodec copy -acodec copy -g 1 -f flv -flvflags no_duration_filesize rtmp://a.rtmp.youtube.com/live2/KEY
    
The command run good

    


    enter image description here
    
, but no livestream show in youtube
    
enter image description here

    


  • Using Python to make a terminal-based YouTube audio streamer

    11 août 2015, par Tyson Berry

    I want to make a terminal-based program that streams YouTube audio for easy listening to music. I’m aware that I’d have to use a converter like ffmpeg to extract the mp3 audio and an audio player like Foobar2000, I’m just unsure how to make it all work together.

    I have an idea for commands etc which is here. (Excuse my crude use of MS Paint)

    As you can see yap (YouTube Audio Player, a working title) is the command used in front of a YouTube URL to tell the program what video to fetch. It then fetches the title of the video from the YouTube page’s source, which is listed in a text file on the desktop along with the URL. The song is then loaded and played through the audio player which is displayed in the terminal using the song time. When the song has ended, you can see the user has typed list. List opens up the list on the desktop, which displays all the songs previously entered in the program. The user can then select a number and play the corresponding song from the list.

    I have found this, which is outdated yet relevant.