Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (71)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (11427)

  • Revert "lavfi/buffersrc : push the frame deeper if requested."

    23 juin 2017, par Paul B Mahol
    Revert "lavfi/buffersrc : push the frame deeper if requested."
    

    Fixes framesync filters with shortest option enabled.

    This reverts commit 0ff5567a30be6d7c804e95997ae282d6bacd76c3.

    • [DH] libavfilter/buffersrc.c
  • avformat/matroskaenc : Fix edge case of writing Cues at the beginning

    28 décembre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Fix edge case of writing Cues at the beginning
    

    The Matroska muxer has the ability to write the Cues (the index) at the
    beginning of the file (in front of the Cluster) : The user inputs the
    amount of space that should be reserved at the beginning of the file and
    if this is sufficient, the Cues will be written there and the part of the
    reserved space not used up by the Cues will be filled with a "Void"
    element.

    There is just one problem with this : One can not fill a single byte this
    way, because said Void element is minimally two bytes long (one byte ID,
    one byte length field). Up until now, if one reserved one byte more than
    needed, one would run into an assert when writing the Void element.

    There are two solutions for this : Error out if it happens. Or adjust the
    length field of the Cues in order to ensure that the above situation
    can't happen (i.e. write the length on one byte more than necessary).
    The first solution is very unsatisfactory, as enough space has been
    reserved. Therefore this commit implements the second solution.

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

    • [DH] libavformat/matroskaenc.c
  • lavf : do basic sanity checking on muxed packets

    20 janvier 2014, par Anton Khirnov
    lavf : do basic sanity checking on muxed packets
    

    Reject packets for non-existing or attachment streams.

    • [DBH] libavformat/mux.c