Recherche avancée

Médias (5)

Mot : - Tags -/open film making

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (10923)

  • 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"
           }]
       }
    }
  • ffmpeg Split And Zoom

    4 décembre 2019, par megaimd mega
    ffmpeg -i video.mp4 -c:v libx264 -crf 22 -map 0 -segment_time 3 -reset_timestamps 1 -g 10 -sc_threshold 0 -force_key_frames “expr:gte(t,n_forced*3)” -f segment out/output%03d.mp4

    As you can see, it is saved :

      output1.mp4
      output2.mp4
      output3.mp4
      output4.mp4

    and so on, it split every 3 seconds.
    Ho can I make, for exemple

      output1.mp4 zoom 2X
      output2.mp4 Normal
      output3.mp4 zoom 2X
      output4.mp4 Normal

    for one movie to zoom in and for another to not zoom

  • Is there some way to configure ffmpeg to include support for signed 24-bit WAV output ?

    10 mars 2020, par Greg

    24-bit sample sizes are not at all uncommon for PCM/WAV data, so I was surprised to see this :

    Invalid sample format 's24'

    ... when I ran this :

    ffmpeg -i input.oga -y -f wav -ar 44100 -sample_fmt s24 -ac 2 output.wav

    When I look at the ffmpeg FAQ page it says that it doesn’t support signed 24-bit sample sizes.

    Fair enough, but I’m having a hard time accepting that this very powerful tool which supports an impressively large number of formats is somehow missing support for this really common sample width.

    All I can think of is that maybe it’s a build configuration issue.

    So this question is...

    Is there some way to configure ffmpeg to include support for signed 24-bit WAV output ?