Recherche avancée

Médias (91)

Autres articles (52)

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

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

  • How to batch convert to x265 minimal file size but keep best possible quality using hardware acceleration in Windows ?

    12 août 2023, par N.TW12

    I am new to the ffmpeg, as the matter of fact just know it for a few hours, I have a huge family videos in mp4/mov x264 format and I would like to convert them all to x265. I don't know what setting is robust for most of the cases so I use -c:v hevc_nvenc and tried :

    


    for /f "tokens=1 delims=." %a in ('dir /B *.mp4') do ffmpeg -i -c:v hevc_nvenc "%a.mp4" "%a.x265.mp4"

for /f "tokens=1 delims=." %a in ('dir /B *.mp4') do ffmpeg -i  "%a.mp4" -c:v hevc_nvenc "%a.x265.mp4" 


    


    I got an error : v was unexpected at this time. How to batch convert to x265 minimal file size but keep best possible quality using hardware acceleration in Windows ?

    


    Edit : I also would like to change the filename by adding ".x265" @ the end of the new file.

    


  • Révision 22126 : Report minimal de r22116 r22118 r22119 : #3418 : Octave utilise une configuration...

    10 mai 2015, par cedric -
  • FFmpeg pass arguments in a text file

    30 novembre 2023, par yazanpro

    I'm trying to get around the 32767 characters limit regarding the command line length in Windows (sometimes it's less than that). I have a large number of boxes that I'm trying to draw on a video. Typically I can concatenate the draw commands using a comma (,) like so (the following command draws two boxes) :

    



    ffmpeg -i input.mp4 -vf "drawbox=enable='between(t, 1.5, 4)' : x=100 : y=100 : w=200 : h=200 : color=green,drawbox=enable='between(t, 9, 18)' : x=500 : y=10 : w=150 : h=150 : color=red" -codec:a copy output.mp4


    



    However since I have many boxes to draw, the length of the entire command becomes too large.

    



    Does FFmpeg offer a way to pass all arguments in a text file instead of literal text ? Something like this :

    



    ffmpeg content(ffmpegCmd.txt)


    



    If that's not possible, is it possible to "buffer" the arguments into separate commands while exporting the result only in the last command ?