Recherche avancée

Médias (91)

Autres articles (57)

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (9666)

  • Save metadata while converting video to images FFmpeg

    17 février 2020, par e480582

    When I convert a video to its constituent images (ffmpeg -i video.MOV img1%03d.png), ffmpeg drops all the metadata. How would I save the metadata while converting ? Is there any way to have it also increment the timestamp for each frame ?

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