Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (48)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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

Sur d’autres sites (5695)

  • What codec/format to use for fastest possible decoding ?

    2 mars 2017, par JT J

    I’m using an ffmpeg script (in Windows) that extracts all the keyframes from a video and pastes them into a folder. I’ve made sure that my drive speed, CPU, and RAM are not causing a bottleneck.

    The quality of the video is actually not important at all in this case. I need to encode the video that the script extracts frames from so that it has the fastest possible decoding speed. File size and quality are not important, only read speed. The video does not have audio. What would work best for me ?

    If it matters, here’s the script I’m working with :

    ffmpeg -i input.mp4 -vf "select=eq(pict_type\,I)" -vsync 1 %%3d.bmp

    Sorry if sound like I don’t know what I’m talking about, this is not a topic I am super familiar with. I appreciate your help !

  • Scaling overlay to match the background video's width while maintaining aspect ratio

    29 mars 2023, par roku

    I'm trying to achive the effect described in the title. But I can't really figure it out. I made a command which almost does what I want it to do but the overlay is still bigger than the background for some reason beyond my understanding.

    


    For more context, the background video has an aspect ratio of 9:16 and the overlay video is always exactly 950 pixels wide.

    


    Here is my command :

    


    ffmpeg -i gameplay.mp4 -i merged.mp4 -i merged.wav -filter_complex "[0:v]crop=ih*(9/16):ih[backgr];[1:v]scale=-2:-2[ovrl];[backgr][ovrl]overlay=(W-w)/2:(H-h)/2[outv]" -map [outv] -map 2:a -shortest test.mp4


    


    Any help is welcome !

    


  • Trying to pickup mp4 & srt files in a dir and combine them using one script

    5 décembre 2022, par David Stammers

    Using this code works fine :

    


    ffmpeg -i input.mp4 -filter:v subtitles=subtitle.srt -c:a copy -c:v libx264 -crf 22 -preset veryfast output.mp4


    


    Trying to batch the operation gives errors :

    


    ls | Where { $_.Extension -eq ".mp4" } | ForEach {

.\ffmpeg.exe -i $_.Name -filter:v subtitles=$_.Name.Replace(".mp4", ".srt") -c:a copy -c:v libx264 -crf 22 -preset veryfast $_.Name.Replace(".mp4", "WithSubs.mp4") 

}


    


    Error :

    


    


    Output file #1 does not contain any stream
an empty file is made called ".mp4"