Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (31)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • 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

Sur d’autres sites (4055)

  • MANGLEd swscale x86 asm to save registers

    4 juin 2012, par Michael Bradshaw

    MANGLEd swscale x86 asm to save registers

  • pthread_frame : save the FF_DEBUG_THREADS option in PerThreadContext.

    10 juillet 2017, par Wan-Teh Chang
    pthread_frame : save the FF_DEBUG_THREADS option in PerThreadContext.
    

    Add the debug_threads boolean field to PerThreadContext. For
    PerThreadContext *p, p->debug_threads records whether the
    FF_DEBUG_THREADS bit is set in p->avctx->debug, and p->debug_threads and
    p->avctx->debug are kept in sync. The debug_threads field is defined as
    an atomic_int to allow atomic read by another thread in
    ff_thread_await_progress().

    This fixes the tsan warning that
    2e664b9c1e73c80aab91070c1eb7676f04bdd12d attempted to fix :

    WARNING : ThreadSanitizer : data race (pid=452658)
    Write of size 4 at 0x7b640003f4fc by main thread (mutexes : write M248499) :
    #0 update_context_from_user [..]/libavcodec/pthread_frame.c:335:19 (5ab42bb1a6f4b068d7863dabe9b2bacc+0xe73859)
    [..]
    Previous read of size 4 at 0x7b640003f4fc by thread T130 (mutexes : write M248502, write M248500) :
    #0 ff_thread_await_progress [..]/libavcodec/pthread_frame.c:591:26 (5ab42bb1a6f4b068d7863dabe9b2bacc+0xe749a1)

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavcodec/pthread_frame.c
  • Can't save metadata when convert video files using python ffmpeg

    24 novembre 2018, par Oliver King

    I tried to us ffmpy library to convert .MOV files into .MP4.
    Converting works well, but I can’t save metadata like title and artist.

    ff = ffmpy.FFmpeg(
       inputs={'input.mov': None},
       outputs={'output.mp4': None},
       global_options=[
           '-metadata name=james',
           '-metadata artist=Beauty and Beast'
       ]
    )

    ff.run()