Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (54)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (6422)

  • Is it possible to programmatically apply a filter to single frame via ffmpeg without specifying time base ?

    13 mai 2023, par Dan M.

    I'm trying to apply a filter to a single AVFrame following the example in https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/decode_filter_video.c
however it involves setting up

    


    const AVFilter *buffersrc  = avfilter_get_by_name("buffer");
...
snprintf(args, sizeof(args),
            "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d",
...


    


    After waddling through obscure errors and debugging the ffmpeg I've found that it doesn't like if I drop the time_base parameter however I don't know what to specify it to (I don't have access to this information at the point I'm trying to apply the filter) and it doesn't seem relevant to the filter I'm trying to use. Indeed, if I specify something random there I see no difference, however that feels like a hack and I'd like to know if there is some proper way you are supposed to set your filter up without specifying the time base/framerate ?

    


  • Revision 16740 : update ffmpeg, apply patches in get_ffmpeg_svn.sh, use GPL3

    28 novembre 2009, par j — Log

    update ffmpeg, apply patches in get_ffmpeg_svn.sh, use GPL3

  • iterate through linex directory to apply same line of code

    25 juillet 2018, par J.D

    In my terminal (Linux), I have a directory of videos (001.mp4, 002.mp4 ... 300.mp4) that I want to split into frames using ffmpeg (ffmpeg -i 1.mp4 -vf fps=20 frame%04d.jpg -hide_banner). How can I apply this code to every video in the directory, specifically making the frames generated in a folder labeled after the video’s name (001.mp4 frames generated in a folder called 001). Running the code on a single video would generate the frames directly in that working directory. Note : the ffmpeg code must be changed to fit the filename each time.