Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (64)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • Revision c53a95ad1d : Avoid calling vp9_is_scaled two times in a function. Use a local variable to ho

    25 septembre 2014, par hkuang

    Changed Paths :
     Modify /vp9/common/vp9_reconinter.c



    Avoid calling vp9_is_scaled two times in a function.

    Use a local variable to hold the result of vp9_is_scaled.

    Change-Id : I5e203909805923e20eefef596bc84424da47dbe2

  • vorbis : Use a local codebook variable

    3 mars 2015, par Luca Barbato
    vorbis : Use a local codebook variable
    

    Makes the code a little simpler.

    • [DH] libavcodec/vorbisdec.c
  • How to overlay frames before making a gif FFMPEG WEBM TO GIF

    10 février 2021, par AVID_FFMPEG

    I'm using windows batch to do some ffmpeg work

    


    Basically what I need to do is this

    


    Add an overlay every X frames (10 in this example, 1, 11 , 21 and so on) to a webm source to a gif.

    


    The how doesn't really matter as long as I keep the quality of my current palette/filter/dither usage

    


    Solution I found : I made a Video to png, overlay the png with batch for loop and make a gif

    


    Problem I encountered : Gif doesn't work with the overlayed pngs

    


    rem EXTRACTING
ffmpeg !time_range! -i "input.webm" -vsync 0 -vf "fps=20,scale=!size!" "output_%%03d.png" 


    


    the two %% is because you need to escape it in batch so ffmpeg sees "%03d"

    


    REM OVERLAYING
for %%i in (_*1.png) do (
ffmpeg -y -v error -i %%i -i %tmp_blank_frame% -filter_complex "overlay"  overlayed_%%~nxi
del %%i
)
REM REPLACING
rename "overlayed_*" "//////////*"


    


    It is not pretty by any means, but it works... somewhat.

    


    It does it's job of overlaying and renaming proprely, but when I recompile the frames into a gif with

    


    ffmpeg -y -framerate 20 -i "output_%%03d.png" -i "!palette!" -filter_complex "!filters! [v]; [v][1:v] paletteuse=dither=!dither!" "overlayedgif.gif"


    


    it just gives me an error "Error marking filters as finished" and does nothing.

    


    ffmpeg -y -framerate 20 -i "output_%%03d.png" -i "!palette!" "overlayedgif.gif"


    


    It makes the gif without the black frames (skips them) also terrible quality

    


    I am open to any suggestion. Pretty new to this whole ffmpeg and this is starting to be very complicated for me so there might be some code that I overlook or don't fully understand

    


    Important note IF I REMOVE THE OVERLAY/RENAME BLOCK MY SCRIPT WORKS WONDERS !!!

    


    EDIT : edited confusing variables im using in my script