Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (84)

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

  • Gestion de la ferme

    2 mars 2010, par

    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"

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (13816)

  • Can`t Stream specific m3u8 with ffmpeg on Youtube

    20 avril 2023, par trainz

    I have problems streaming on youtube to this m3u8 playlist : http://94.23.219.56:8081/live/stroponescam/playlist.m3u8 . I don't understand what's wrong with it, with any other m3u8 file the stream starts but with this one doesn't.

    


    I mention that this playlist have video signal and it work on a player on a website.

    


    I use this ffmpeg code :

    


    ffmpeg -re -i http://94.23.219.56:8081/live/stroponescam/playlist.m3u8 -re -f lavfi -i anullsrc -c:v copy -c:a aac -ac 2 -strict -2 -flags +global_header -bsf:a aac_adtstoasc -bufsize 3000k -f flv rtmp ://a.rtmp.youtube.com/live2/xxxx-wxd7-xxxx-jw83-xxxx

    


    Please help me !

    


  • How do install ffmpeg in android for youtube-dl

    21 novembre 2019, par Wasp Nesser

    I have got a python code for downloading a video (from youtube) and converting to mp3. I used youtube-dl for these. Python code works in computer. But that error occurred in my android :

    youtube_dl.utils.DownloadError: ERROR: ffprobe/avprobe and ffmpeg/avconv not found. Please install one. [Program finished]

    I couldn’t find how to install these requirments in android . I use application called pydroid3 for executing python codes , installing python libraries and terminal staff. I tried to install ffmpeg and ffprob libraries with pip .But it didn’t helped me. After I tried to execute

    adb shell pm install ffmpeg

    And It didn’t helped me to.

    This is my code :

    import youtube_dl
    import os
    outtmpl = "%(playlist_title)s-%(playlist_uploader)s /%(playlist_index)s %(title)s-%(uploader)s.%(ext)s"
    ydl_opts = {
       'format': 'bestaudio/best',
       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
       },
           {'key': 'FFmpegMetadata'},
       ],
       'outtmpl' : outtmpl,
    }

    url = input("Enter url : ")

    with youtube_dl.YoutubeDL(ydl_opts) as ydl:

       ydl.download([url])
  • FFMPEG Streaming USB Webcam Video with Music Playlist

    3 février 2020, par 556duckvader

    Hello I am setting up streaming box that will be using a USB webcam as my video source and I am wanting to add in background audio to the live streams. I am wanting to do this by specifying a playlist and have it play through the audio files and then loop back once the playlist is finished. I have the ffmpeg command that allows me to stream the USB webcam and I can get one audio file to play but I can’t get seem to figure out how to get the playlist to work. Any help would be great. Below is what I have that is working.

    ffmpeg -f v4l2 -s 1280x720 -i /dev/video0 -i /home/pi/twitchMusic/ES_Arrows-MarVei.mp3 -c:a copy -c:v libx264 -r 24 -rtbufsize 1500k  -preset ultrafast -crf 23 -force_key_frames 'expr:gte(t,n_forced*2)' -minrate 2200k -maxrate 2200k -pix_fmt yuv420p -b:v 2500k -bufsize 2200k -f flv rtmp://live.twitch.tv/app/TWITCH_KEY