Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (51)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (8975)

  • mlp_parser : fix the channel mask value used for the top surround channel

    25 février 2012, par Tim Walker

    mlp_parser : fix the channel mask value used for the top surround channel

  • Select the correct Flash object in Chrome 32+.

    14 novembre 2013, par JamesMGreene
    Select the correct Flash object in Chrome 32+.
    Fixes #262.
  • how to assign the video level to struct AVCodecContext in ffmpeg ?

    14 juin 2019, par Lichard

    I am writting a C++ video encode API with ffmpeg.The video level is one important param, but I don’t known how to assign it to AVCodecContext.

    I read the ffmpeg document and find out that "level" is int type,below is the definition at line 3014 of file avcodec.h.

              /**
    3010      * level
    3011      * - encoding: Set by user.
    3012      * - decoding: Set by libavcodec.
    3013      */
    3014      int level;
    3015 #define FF_LEVEL_UNKNOWN -99

    according to my google search, the value of level is from 1.1(1.2,1.3,2...) to 5.2, obviously it is not an int type. I think level should be an enum type,but I can’t find any definition about it.

    I have see some usage in internet, such as :

     AVCodecContect *pCtx;
     pCtx->level = 3;
     ....//or
     pCtx->level = 50;

    but I think these usages are wrong..
    I think the correct way to assign is somehow like this :

     pCtx->level = FF_LEVEL_UNKNOWN;

    so I wonder if there is some relevant enum type definition about level and how to location it.