Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (60)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (7554)

  • can't convert online gif to mp4 video using ffmpeg

    15 février 2023, par عبدالله لبيب

    I am trying to turn this gif into mp4 video using ffmpeg but it is not working
https://media.giphy.com/media/H7T8UdGOvOQiDf9QXj/giphy.gif

    


    I tried this code

    


    -i https://media.giphy.com/media/H7T8UdGOvOQiDf9QXj/giphy.gif output.mp4


    


    also I tried this code

    


    -f gif -i https://media.giphy.com/media/H7T8UdGOvOQiDf9QXj/giphy.gif output.mp4


    


    in both cases it did not work.

    


  • avutil/cpu : Use HW_NCPUONLINE to detect # of online CPUs with OpenBSD

    3 avril 2021, par Brad Smith
    avutil/cpu : Use HW_NCPUONLINE to detect # of online CPUs with OpenBSD
    

    Signed-off-by : Brad Smith <brad@comstyle.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavutil/cpu.c
  • Recording from online stream and listening to it at the same time (ffmpeg / ffplay)

    28 juin 2016, par Konstantin

    Sometimes I like to record programmes from online radio channels, live or archived streams too. When there is no interesting actual programmes in the radios, I also would like listening to it at the same time while recording. I am using such command lines, which is called from Ruby script - to help parsing radios’ timetables / programme pages and constructing the proper URLs of archived programmes which usually contains some timecode, such as 20160616_083000.mp3, etc.
    So my command line to call from Ruby script looks like :

       programmes.each{|datepart,programme_length|
         cmd=%Q{ffmpeg -y -i http://example.com/stream/#{datepart}.mp3 -t #{programme_length} -c:a libmp3lame -b:a 160k "#{fname}" -c copy -t #{programme_length} -f mp3 -f rtp rtp://127.0.0.1:8888}
         system cmd
    }

    It resides in a loop to record the previously parsed and selected programmes. Of cource the programmes are recorded properly and at the same time ffmpeg streams it as an mp3 rtp stream as well on localhost at the given port. In another terminal window I connect to the streamed data with one-liner as follows :

    while true; do ffplay -i rtp://127.0.0.1:8888 -autoexit; done

    I am using the -autoexit switch which should be stop playing the stream when it is ended and the "while" loop should be connect again to the new stream which is served by the programme recording "each" loop. Unfortunately it keeps playing after the end, and doesn’t initiate a new connection to the newly started stream. How to use ffplay properly to stop playing after rtp stream is ended and let it connect again to the new stream ?