Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (75)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (12003)

  • avcodec/bsf : Simplify getting codec name

    2 avril 2021, par Andreas Rheinhardt
    avcodec/bsf : Simplify getting codec name
    

    All codec ids on BSF whitelists have a codec descriptor, so one can just
    use avcodec_get_name() without worrying about the case of what happens
    when no codec descriptor is found.

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

    • [DH] libavcodec/bsf.c
  • avfilter/vf_shufflepixels : Check ff_get_video_buffer()

    22 juillet 2021, par Andreas Rheinhardt
    avfilter/vf_shufflepixels : Check ff_get_video_buffer()
    

    There would be a segfault in case of (likely memory allocation) failure.
    Fixes Coverity issue #1322338.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/vf_shufflepixels.c
  • avcodec/mpeg12dec : Don't initialize inter_scantable

    28 avril 2024, par Andreas Rheinhardt
    avcodec/mpeg12dec : Don't initialize inter_scantable
    

    MPEG-1/2 only needs one scantable and therefore all code
    already uses the intra one. So stop initializing
    the inter one altogether.

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

    • [DH] libavcodec/mpeg12dec.c