Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (54)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (4379)

  • libavcodec/j2kenc : Fix tag tree coding

    27 août 2020, par Gautam Ramakrishnan
    libavcodec/j2kenc : Fix tag tree coding
    

    The implementation of tag tree encoding was incorrect.
    However, this error was not visible as the current j2k
    encoder encodes only 1 layer.
    This patch fixes tag tree coding for JPEG2000 such tag
    tree coding would work for multi layer encoding.

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

    • [DH] libavcodec/j2kenc.c
    • [DH] libavcodec/jpeg2000.c
    • [DH] libavcodec/jpeg2000.h
  • Two Pass encoding FFMpeg C/C++

    21 mai 2018, par Carmine Spizuoco

    From different days I’m trying to implement the two pass encoding h264 in ffmpeg without success. I understand that in the first pass I need to create a text file with the statistics that are in stats_out. This step is realized internally from ffmpeg, so I need set the first pass and have the data in stats_out and after I need go to pass 2.

    For now I’m trying to activate the pass 1 in different way adding the flag in the codecContext :

    CodecCtx->flags |= AV_CODEC_FLAG_PASS1;

    and/or set the option before the creation of context :

    av_opt_set(CodecCtx, "pass", "1", 0);

    but in any way i have the same result, stats_out is always (null).

    Also in the investigation i discovery this FF_API_STATS_BIT that seems to be deprecated :

    if FF_API_STAT_BITS

    /* statistics, used for 2-pass encoding */
    attribute_deprecated
    int mv_bits;
    attribute_deprecated
    int header_bits;
    attribute_deprecated
    int i_tex_bits;
    attribute_deprecated
    int p_tex_bits;
    attribute_deprecated
    int i_count;
    attribute_deprecated
    int p_count;
    attribute_deprecated
    int skip_count;
    attribute_deprecated
    int misc_bits;

    /** @deprecated this field is unused */
    attribute_deprecated
    int frame_bits;

    endif

    So there is i little bit of ambiguity on how to realize this process and the relative posts are too old and not very usefull.

    There is anyone that had experience on it ?

  • How to create binary text encoded stream in FFMPEG

    24 septembre 2018, par user4177870

    I found AV_CODEC_ID_BINTEXT as valid CODEC_ID in FFMPEG. But I found that there is only decoder for AV_CODEC_ID_BINTEXT here
    Why is there not an encoder for AV_CODEC_ID_BINTEXT or in general for "Data Stream" ? Whats the expectation of the binary text decoder shipped out of FFMPEG ?