Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (70)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (6095)

  • avfilter/vf_scale : fix frame lifetimes

    9 juillet 2024, par Niklas Haas
    avfilter/vf_scale : fix frame lifetimes
    

    scale_frame() inconsistently handled the lifetime of `in`. Fixes a
    possible double free and a possible memory leak.

    The new code always has `scale_frame` take over ownership of the input
    frame. I first tried writing this code in a way where the calling code
    retains ownership, but this is nontrivial due to the presence of the
    no-op short-circuit condition in which the input frame is directly
    returned. (As an alternative, we could use av_frame_clone() instead, but
    I wanted to avoid touching the original behavior in this commit)

    • [DH] libavfilter/vf_scale.c
  • Unable to Extraxt DTVCC stream info using FFProbe

    5 septembre 2018, par Anuragh27crony

    I’m unable to fetch the codec/info for closed captioning streams of a particular media file with following error.

    Unsupported codec with id 100359 for input stream 4

    Blockquote

    Follwing is the MediaInfo of the file

    enter image description here

    I’m aware of alternative tools to fetch this info, we are trying to automate the workflow using ffprobe/ffmpeg toolchain.

    Any help is appreciated.

  • avfilter/avf_showcqt : Replace all fmin* and fmax* by FFMIN/FFMAX

    31 octobre 2015, par Michael Niedermayer
    avfilter/avf_showcqt : Replace all fmin* and fmax* by FFMIN/FFMAX
    

    Should fix build on x86_32-msvc2012

    The alternative of emulating fmin/fmax* turns out to be non trivial

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/avf_showcqt.c