Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (66)

  • 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" ;

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8118)

  • avutil/log : Replace the number by macro for bprint init

    10 juin 2018, par Jun Zhao
    avutil/log : Replace the number by macro for bprint init
    

    Replace the number by macro for bprint init.

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavutil/log.c
  • How to find the presentation time stamp of a given frame number for FFMPEG decoding ?

    21 août 2017, par Deepankar Arya

    I am using the C APIs of ffmpeg for some video processing. My aim is to extract the screen shot of a given frame number. I have understood that ffmpeg has an av_seek_frame function to seek to a given timestamp(expressed in appropriated base units of the video stream). I assume that I will have to goto to the most recent I frame for the given frame(using the AVSEEK_FLAG_BACKWARD flag) and read onwards untill I meet the required frame. For that I need to give a seek time stamp to the av_seek_frame function. My main issue is that given a frame number, how do I find an associated presentation time stamp to seek to ?

  • How to get the duration or total number of frame in ffmpeg filter ?

    1er juillet 2020, par Reasno

    I'm writing a filter in ffmpeg in which I have to get the duration of the video. The filter_frame function looks like followings :

    &#xA;

    static int filter_frame(AVFilterLink* link, AVFrame* in) {&#xA;    AVFilterContext* avctx = link->dst;&#xA;    ExtractContext* privCtx = (ExtractContext*)avctx->priv;&#xA;    AVFilterLink* outlink = avctx->outputs[0];&#xA;    //here I want to get the duration or total number of frames:&#xA;}&#xA;

    &#xA;

    I have to get the duration or total number of frames in this function, but the only parameters of the function is AVFilterLink and AVFrame in which I cant find relative fields, so I dont know how to do.&#xA;Can you help me ? Thanks for your reply !

    &#xA;