Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (93)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (8530)

  • 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.

  • h265_metadata : Add option to set the level of the stream

    6 mai 2019, par Mark Thompson
    h265_metadata : Add option to set the level of the stream
    

    To match the same option in h264_metadata.

    • [DH] doc/bitstream_filters.texi
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/h265_metadata_bsf.c
  • avformat/matroskadec : Improve check for level 1 duplicates

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Improve check for level 1 duplicates
    

    If a file uses unknown-length level 1 elements besides clusters and such
    elements are after the first cluster, then these elements will usually
    be parsed twice : Once during parsing of the file header and once when
    reading the file reaches the position where these elements are located.
    The second time the element is parsed leads to a "Duplicate element"
    error message. Known-length elements are not affected by this as they
    are skipped except during parsing the header.

    This commit fixes this by explicitly adding a check for whether the
    position of the element to be parsed is the same as the position of the
    already known level 1 element.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskadec.c