Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (13)

  • 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

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

Sur d’autres sites (4630)

  • fftools/ffmpeg_filter : make InputFilterPriv and OutputFilterPriv private again

    28 mai, par James Almer
    fftools/ffmpeg_filter : make InputFilterPriv and OutputFilterPriv private again
    

    As the names imply, they are structs meant to be internal and private to the
    filter handling code. If a field is required in other modules, then it can
    be moved to the public facing structs, which is done in this commit.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_filter.h
    • [DH] fftools/graph/graphprint.c
    • [DH] fftools/resources/resman.c
  • FFMPEG : How to create a webp [16/9] preview file

    30 août 2018, par A - O

    enter image description here

    How is that possible to make something like this by using FFmpeg ?

    I’m trying to create a webp file for videos to show a quick preview of them like Youtube with fixed height and width, But when the video’s width and height are like this [W:350 H:196] I get this following error.

    Error :

    [Parsed_crop_5 @ 000002438207c580] Invalid too big or non positive size for width '350' or height '196'

    FFMPEG script

    ffmpeg -r 16 -ss 0 -i <input file="file" /> -loop 0 -c:v libwebp -lavfi "[0:v]scale=ih*16/9:-1,boxblur=luma_radius=min(h\,w)/20:luma_power=1:chroma_radius=min(cw\,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setpts=0.3*PTS,scale=350:-1,crop=h=iw*9/16" -vb 800K -t 00:00:03 out.webp -y

    The main problem is this, Ignore other parameters like infinite loop,t, frame rate...

    crop=h=iw*9/16

    In my opinion, some quantities are large floats and that’s why I’m getting this error.

  • FFMPEG : How to create a webp preview file

    30 août 2018, par A - O

    enter image description here

    How is that possible to make something like this by using FFmpeg ?

    I’m trying to create a webp file for videos to show a quick preview of them like Youtube with fixed height and width, But when the video’s width and height are like this [W:350 H:196] I get this following error.

    Error :

    [Parsed_crop_5 @ 000002438207c580] Invalid too big or non positive size for width '350' or height '196'

    FFMPEG script

    ffmpeg -r 16 -ss 0 -i <input file="file" /> -loop 0 -c:v libwebp -lavfi "[0:v]scale=ih*16/9:-1,boxblur=luma_radius=min(h\,w)/20:luma_power=1:chroma_radius=min(cw\,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setpts=0.3*PTS,scale=350:-1,crop=h=iw*9/16" -vb 800K -t 00:00:03 out.webp -y

    The main problem is this, Ignore other parameters like infinite loop,t, frame rate...

    crop=h=iw*9/16

    In my opinion, some quantities are large floats and that’s why I’m getting this error.