Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (79)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5802)

  • avformat/webpenc : Write correct size for single images when unseekable

    3 novembre 2023, par Andreas Rheinhardt
    avformat/webpenc : Write correct size for single images when unseekable
    

    The earlier code writes the file and then tries to patch up
    the size later. This is avoidable for the common case of
    a single image because one can know the complete size
    in advance and write it.

    Fixes ticket #4609.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/webpenc.c
  • avcodec/mpegvideo_enc : Do not duplicate pictures on shifting

    19 juin 2024, par Michael Niedermayer
    avcodec/mpegvideo_enc : Do not duplicate pictures on shifting
    

    Fixes : out of array access
    Fixes : 69098/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG2VIDEO_fuzzer-6107989688778752
    Fixes : 69599/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-4848626296225792.fuzz

    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/mpegvideo_enc.c
  • ffmpeg : a way to write to a temp file and rename when finished writing ?

    29 juin 2023, par desktop1234

    i am using ffmpeg to split a video into frames and wondering if there any flags i can set so that ffmpeg will start writing the frame to a file and only rename it when its finished writing to it.

    &#xA;

    for context this is the current ffmpeg command im using :

    &#xA;

    ffmpeg -loglevel 8 -ss -to -copyts -i -vf -vsync passthrough -compression_level 1 -frame_pts true -sws_flags lanczos

    &#xA;

    for further context, i am asking since i have set up a watcher on the directory ffmpeg writes to but i dont want to do anything with the file until its been fully written to and closed.

    &#xA;

    i also dont want to rename every file when the full ffmpeg operation has completed, since it would defeat the purpose of my watcher, but rather as soon as 1 file has been fully written to, rename it.

    &#xA;

    any help would be greatly appreciated !

    &#xA;