Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (33)

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

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

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

  • avcodec/h264 : Fix race between slices where one overwrites data from the next

    7 avril 2015, par Michael Niedermayer
    avcodec/h264 : Fix race between slices where one overwrites data from the next
    

    Fixes non deterministic crash in ticket4408/fuzz2.264
    Likely fixes other samples as well

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264.h
    • [DH] libavcodec/h264_slice.c
  • avformat/udp : Fix temporary buffer race

    8 juin 2024, par Michael Niedermayer
    avformat/udp : Fix temporary buffer race
    

    Fixes : CID1551679 Data race condition
    Fixes : CID1551687 Data race condition

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/udp.c
  • avutil : fix data race in av_get_cpu_flags()

    7 décembre 2016, par Wan-Teh Chang
    avutil : fix data race in av_get_cpu_flags()
    

    Make the one-time initialization in av_get_cpu_flags() thread-safe. The
    static variable |cpu_flags| in libavutil/cpu.c is read and written using
    normal load and store operations. These are considered as data races.
    The fix is to use atomic load and store operations.

    The fix can be verified by running the libavutil/tests/cpu_init.c test
    program under ThreadSanitizer :
    ./configure —toolchain=clang-tsan
    make libavutil/tests/cpu_init
    libavutil/tests/cpu_init

    There should be no warnings from ThreadSanitizer.

    Co-author : Dmitry Vyukov of Google, who suggested the data race fix.

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/cpu.c
    • [DH] libavutil/cpu.h