Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (11765)

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