Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (72)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (12132)

  • Speed up FFMPEG Mixing Two Audio Files slow

    21 septembre 2016, par Jeremy

    I’m working on a FFMPEG command to mix two audio input’s, combine them (layer ontop of each other), adjust their volumes, and print out to an output. On a 99 second input, it takes about 93 seconds to finish processing and on Mobile, that is way to long.

    I’ve read that I could possibly use -copy to skip reencoding the files, but am unsure of how to do this. Only one of the files are created by the user, so the second input could just be a copy. I have tried using the different presets, fast, ultrafast, and medium but still there is a time delay.

    FFMPEG Command :
    http://pastebin.com/b9u4Snxw

    Any ideas on how to speed this up and reduce processing time ?

    EDIT : Here are my Logs from a successful mix of a recording that was 30 seconds long.
    http://pastebin.com/WxAYWimi

  • Encoding.com transcoding speed

    19 août 2016, par TheDoctor

    ffmpeg presets are :

    ultrafast, superfast, veryfast, faster, fast, medium, slow, slower, veryslow and placebo

    How should my json request look like if i want as encoding speed slow ?

    My json so far :

    {
       "query": {
           "userid": "79943",
           "userkey": "XXX",
           "action": "addMedia",
           "notify": "aw3somevideo@gmail.com",
           "format": [{
               "output": "mpeg_dash",
               "sizes": "426x240,640x360",
               "bitrates": "400k,800k"
           }, {
               "output": "ipad_stream",
               "sizes": "426x240,640x360",
               "bitrates": "400k,800k"
           }]
       }
    }
  • Speed up and reverse a video with a single command ?

    4 août 2016, par Eduardo Perez

    I am using Ubuntu 16.04. I know with FFMPEG you can use this command to reverse a video.

    ffmpeg -i [input] -vf reverse -af areverse [output]

    Now, the thing is I found somewhere that you can use this command to speed up the video.

    ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" [output]

    So, I tried this command to speed up and reverse the video, but it didn’t work since complex filters can’t be used together with -vf or -af.

    ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" -vf reverse -af areverse [output]

    What command do I need to use to get FFmpeg to speed up and reverse the video, without decompiling it ? I’m using the latest version of FFmpeg.