Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (10134)

  • avformat/aviobuf : discard part of the IO buffer in ffio_ensure_seekback if needed

    28 septembre 2020, par Marton Balint
    avformat/aviobuf : discard part of the IO buffer in ffio_ensure_seekback if needed
    

    Previously ffio_ensure_seekback never flushed the buffer, so successive
    ffio_ensure_seekback calls were all respected. This could eventually cause
    unlimited memory and CPU usage if a demuxer called ffio_ensure_seekback on all
    it's read data.

    Most demuxers however only rely on being able to seek back till the position of
    the last ffio_ensure_seekback call, therefore we change the semantics of
    ffio_ensure_seekback so that a new call can invalidate seek guarantees of the
    old. In order to support some level of "nested" ffio_ensure_seekback calls, we
    document that the function only invalidates the old window (and potentially
    discards the already read data from the IO buffer), if the newly requested
    window does not fit into the old one.

    This way we limit the memory usage for ffio_ensure_seekback calls requesting
    consecutive data windows.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/avio_internal.h
    • [DH] libavformat/aviobuf.c
  • How to add #EXT-X-PART:DURATION=0.200,URI="filePart271.0.mp4" into .m3u8 in ffmpeg ? [closed]

    11 août 2023, par palak

    So my question is : How do I add #EXT-X-PART:DURATION=0.200,URI="filePart271.0.mp4" to my HLS m3u8 playlist file using FFmpeg ?

    &#xA;

    And the error i am receiving is Unrecognized option 'hls_part_flags'.&#xA;Error splitting the argument list : Option not found.

    &#xA;

    as well as Unrecognized option 'hls_part_target'.&#xA;Error splitting the argument list : Option not found.

    &#xA;

    Currently my FFmpeg command is the following :&#xA;ffmpeg -f lavfi -t 16 -i anullsrc -f lavfi -i testsrc=size=1280x720:rate=30 -c:v libx264 -c:a aac -t 16 -hls_time 4 -hls_playlist_type vod -hls_segment_type fmp4 -start_number 266 -hls_flags single_file -master_pl_name master.m3u8 -var_stream_map "v:0,a:0" -hls_segment_filename 'fileSequence%v.mp4' -hls_fmp4_init_filename 'city.mp4' -hls_base_url './' -hls_segment_filename 'filePart%v.%04d.mp4' -hls_part_flags '+independent' -hls_part_target 0.200 output.m3u8

    &#xA;

    My expectation is that, How do I add #EXT-X-PART:DURATION=0.200,URI="filePart271.0.mp4" to my HLS m3u8 playlist file using FFmpeg ?

    &#xA;

  • Can an executable be run as a part of a blob-triggered Azure Function ?

    24 décembre 2018, par Dhruv Kapoor

    I know executables are suitable for timer triggers, but since the timer trigger doesn’t require parallel access to the executable, I wasn’t sure if it works for blob triggers. Let’s say I have 10 messages in my queue, will the Azure runtime cause a lock on the executable ? Or will it manage just fine with 10 parallel instances ? The context to this question is a wrapper library (NReco) I’m using around the FFMPeg utility. The binaries for FFMPeg are required during the exeution of my Azure function.