Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (44)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8448)

  • hevc : only write to max_ra and pocTid0 in the first slice.

    3 avril 2017, par Ronald S. Bultje
    hevc : only write to max_ra and pocTid0 in the first slice.
    

    Values from subsequent values are guaranteed to be identical (since
    poc and nal_unit_type are checked to be the same between slices), so
    this doesn’t affect output in any way, but does resolve the remaining
    reported race conditions (by tsan) in fate-hevc.

    In practice, this fixes tsan warnings like this :

    WARNING : ThreadSanitizer : data race (pid=25334)
    Read of size 4 at 0x7d9c0001adcc by main thread (mutexes : write M1386) :
    #0 hevc_update_thread_context src/libavcodec/hevcdec.c:3310 (ffmpeg+0x000000b41c7c)
    [..]
    Previous write of size 4 at 0x7d9c0001adcc by thread T1 (mutexes : write M1383) :
    #0 hls_slice_header src/libavcodec/hevcdec.c:596 (ffmpeg+0x000000b43a22)

    • [DH] libavcodec/hevcdec.c
  • pthread_frame : call update_context_from_user() after acquiring lock.

    3 avril 2017, par Ronald S. Bultje
    pthread_frame : call update_context_from_user() after acquiring lock.
    

    Otherwise the thread may still be in the middle of decoding a previous
    frame, which would effectively trigger a race condition on any field
    concurrently read and written.

    In practice, this fixes tsan warnings like the following :

    WARNING : ThreadSanitizer : data race (pid=17380)
    Write of size 4 at 0x7d64000160fc by main thread :
    #0 update_context_from_user src/libavcodec/pthread_frame.c:335 (ffmpeg+0x000000dca515)
    [..]
    Previous read of size 4 at 0x7d64000160fc by thread T2 (mutexes : write M1821) :
    #0 ff_thread_report_progress src/libavcodec/pthread_frame.c:565 (ffmpeg+0x000000dcb08a)

    • [DH] libavcodec/pthread_frame.c
  • ffmpeg : make transcode_init_done atomic.

    31 mars 2017, par Ronald S. Bultje
    ffmpeg : make transcode_init_done atomic.
    

    Should fix tsan warnings in fate-fifo-muxer-h264/wav :

    WARNING : ThreadSanitizer : data race (pid=26552)
    Write of size 4 at 0x000001e0d7c0 by main thread :
    #0 transcode_init src/ffmpeg.c:3761 (ffmpeg+0x00000050ca1c)
    [..]
    Previous read of size 4 at 0x000001e0d7c0 by thread T1 :
    #0 decode_interrupt_cb src/ffmpeg.c:460 (ffmpeg+0x0000004fde19)

    • [DH] ffmpeg.c