Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (81)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (8414)

  • checkasm : hevc : Iterate over features first, then over bitdepths

    28 juin 2016, par Martin Storsjö
    checkasm : hevc : Iterate over features first, then over bitdepths
    

    This avoids listing the same feature multiple times in the
    test output. Previously the output contained something like this :

    SSE2 :
    - hevc_mc.qpel [OK]
    - hevc_mc.epel [OK]
    - hevc_mc.unweighted_pred [OK]
    - hevc_mc.qpel [OK]
    - hevc_mc.epel [OK]
    - hevc_mc.unweighted_pred [OK]

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tests/checkasm/hevc_mc.c
  • Recording from online stream and listening to it at the same time (ffmpeg / ffplay)

    28 juin 2016, par Konstantin

    Sometimes I like to record programmes from online radio channels, live or archived streams too. When there is no interesting actual programmes in the radios, I also would like listening to it at the same time while recording. I am using such command lines, which is called from Ruby script - to help parsing radios’ timetables / programme pages and constructing the proper URLs of archived programmes which usually contains some timecode, such as 20160616_083000.mp3, etc.
    So my command line to call from Ruby script looks like :

       programmes.each{|datepart,programme_length|
         cmd=%Q{ffmpeg -y -i http://example.com/stream/#{datepart}.mp3 -t #{programme_length} -c:a libmp3lame -b:a 160k "#{fname}" -c copy -t #{programme_length} -f mp3 -f rtp rtp://127.0.0.1:8888}
         system cmd
    }

    It resides in a loop to record the previously parsed and selected programmes. Of cource the programmes are recorded properly and at the same time ffmpeg streams it as an mp3 rtp stream as well on localhost at the given port. In another terminal window I connect to the streamed data with one-liner as follows :

    while true; do ffplay -i rtp://127.0.0.1:8888 -autoexit; done

    I am using the -autoexit switch which should be stop playing the stream when it is ended and the "while" loop should be connect again to the new stream which is served by the programme recording "each" loop. Unfortunately it keeps playing after the end, and doesn’t initiate a new connection to the newly started stream. How to use ffplay properly to stop playing after rtp stream is ended and let it connect again to the new stream ?

  • vaapi_encode : Maintain a pool of bitstream output buffers

    5 juin 2016, par Mark Thompson
    vaapi_encode : Maintain a pool of bitstream output buffers
    

    Previously we would allocate a new one for every frame. This instead
    maintains an AVBufferPool of them to use as-needed.

    Also makes the maximum size of an output buffer adapt to the frame
    size - the fixed upper bound was a bit too easy to hit when encoding
    large pictures at high quality.

    • [DBH] libavcodec/vaapi_encode.c
    • [DBH] libavcodec/vaapi_encode.h