Recherche avancée

Médias (91)

Autres articles (58)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9478)

  • generate multiple qualities using "ffmpeg" [closed]

    28 septembre 2022, par zamoosh

    I'm trying to generate multiple qualities using "ffmpeg".
    
I get an answer for my question in this [link][1]

    


    Here is my code :

    


    ffmpeg -f flv -i mov_bbb.mp4 \                                            
  -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 \
  -c:v libx264 -crf 22 -c:a aac -ar 48000 \
  -filter:v:0 scale=w=480:h=360  -maxrate:v:0 600k -b:a:0 500k \
  -filter:v:1 scale=w=640:h=480  -maxrate:v:1 1500k -b:a:1 1000k \
  -filter:v:2 scale=w=1280:h=720 -maxrate:v:2 3000k -b:a:2 2000k \
  -var_stream_map "v:0,a:0,name:360p v:1,a:1,name:480p v:2,a:2,name:720p" \
  -preset fast -hls_list_size 10 -threads 0 -f hls \
  -hls_time 3 -hls_flags independent_segments \
  -master_pl_name "livestream.m3u8" \
  -y "livestream-%v.m3u8"



    


    But I get this error :

    


    Stream map '0:v:0' matches no streams.
To ignore this, add a trailing '?' to the map.


    


  • Java execute command line and always replace when it asks [Y/N]

    26 juillet 2017, par Ariana

    I am calling java.lang.Runtime.exec(...) in my Java program to run a command, say :

    ffmpeg -i input.mp4 output.mp4.

    This is simply passed to my function to run :

       private static void RunCommand(String command) throws InterruptedException {
           try {
               // Execute command
               Process proc = Runtime.getRuntime().exec(command);
    }
    }

    Everything is OK. But my question is to handle cases when the file already exists, so asks if it should replace it :

    File 'output.avi' already exists. Overwrite ? [y/N]

    What is the simplest way to ignore it (always assume y and replace) ? Maybe through Java in code or FFMPEG command itself ?

  • movenc : Check for errors from mov_create_chapter_track

    26 août 2013, par Martin Storsjö
    movenc : Check for errors from mov_create_chapter_track
    

    On failures in the write_trailer function, we could also ignore
    the errors and try to finish the file despite these errors (which
    would only leave an incomplete chapters track). It’s probably better
    to signal the error clearly to the caller though (and if this
    function failed there’s no guarantee that there’s enough memory to
    finish the trailer either).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/movenc.c