Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (96)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9667)

  • Is possible to call external action between file segmentation on FFMPEG

    10 janvier 2020, par Marcelo Ludovico

    When I use ffmpeg with -f segment format

    ffmpeg -f decklink -channels 16 -i "DeckLink Quad (channel_number)" -c:v h264 -s 1280x720 -b:v 1.5M -c:a mp3 -b:a 48K -f segment -segment_time 10 -segment_atclocktime 1 -strftime 1 "/output/path/%Y%m%d%H%M%S.mp4"

    it creates a sequence of h264 encoded mp4 files. Then I need to transcode this files to HEVC for storage/bandwidth saving reasons.

    At this point if I want to automate this process, I don’t always know when the segments are ready to be transcoded, which I do by :

    ffmpeg -y -i path + filename -map 0 -c:v hevc -b:v 500K -s 1280x720 -c:a aac -b:a 48K path + "converted/" + filename

    My question is :
    Is there a way to call anything external everytime ffmpeg opens a new file for writing ?

    Info : I can’t directly encode HEVC from input because I don’t have a capable GPU to do so, hence the CPU encoding is slower than the input stream, causing "buffer overrun" at the decklink input.

  • Revision 18d323606d : Fix test to call clear system state in convolve_test. Assembly tests should cle

    12 décembre 2014, par Jim Bankoski

    Changed Paths :
     Modify /test/convolve_test.cc



    Fix test to call clear system state in convolve_test.

    Assembly tests should clear system state, as we have no
    expectation of proper system state in between test runs..

    Change-Id : I0f591996c1f17ef2a5a8572a6b445f757223a144

  • 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