Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (101)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (8177)

  • avformat/hls : improve segment selection when restarting list reception

    30 décembre 2013, par Anssi Hannula
    avformat/hls : improve segment selection when restarting list reception
    

    Improve selection of the segment sequence number when restarting the
    reception of a playlist after it was suspended due to being unneeded
    (due to discard flags).

    The current code assumes that each playlist contains matching data with
    the same sequence number, while spec 3.4.3 specifically says that that
    is not the case. Often subtitle playlists also have longer target
    durations as well, causing the selection to be completely wrong.

    Instead prefer using the playlist segment duration information for
    non-live playlists, and other means if that is not possible.

    Signed-off-by : Anssi Hannula <anssi.hannula@iki.fi>

    • [DH] libavformat/hls.c
  • avcodec/wavarc : Check order before using it to write the list

    16 avril 2023, par Michael Niedermayer
    avcodec/wavarc : Check order before using it to write the list
    

    Fixes : out of array access
    Fixes : 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVARC_fuzzer-6247711015043072
    Fixes : 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVARC_fuzzer-6487578428964864
    Fixes : 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVARC_fuzzer-6651587794960384
    Fixes : 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVARC_fuzzer-6686265824378880

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/wavarc.c
  • Calculate edits in QuickTime Movie File with Edit List Atom

    8 juin 2016, par kodonnell

    In a Linux environment, is there a way to calculate any edits in a QuickTime Movie File track ? Specifically, I need duration and start time of edits in relation to the movie.

    I have been parsing the raw mov file to look at the Edit List Atom ( i.e. ’elst’ ) to get the track duration and media time but, even after the adjustments for time scale units the start time always seems off.

    For example, I have a single track video which has been edited to have first and last 6 seconds of the video removed. However, when I look at the ’elst’ atom of that file the track duration is the length of the new file but, the media time does not match what I would have expected (i.e. something equivalent to 6 seconds).

    I have tried looking into tools like FFmpeg but have had little success.