Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (46)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (6930)

  • avutil/buffer : free all pooled buffers immediately after uninitializing the pool

    20 février 2021, par James Almer
    avutil/buffer : free all pooled buffers immediately after uninitializing the pool
    

    No buffer will be fetched from the pool after it's uninitialized, so there's
    no benefit from waiting until every single buffer has been returned to it
    before freeing them all.
    This should free some memory in certain scenarios, which can be beneficial in
    low memory systems.

    Based on a patch by Jonas Karlman.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/buffer.c
  • FFmpeg conform DASH to YouTube Live Stream requirements

    4 septembre 2023, par Aniol Pagès

    I'm trying to stream to YouTube using FFmpeg and DASH. I've generated the stream key and I'm successfully sending the generated files to YouTube. However, YouTube refuses the MPD manifest because it has two AdaptationSet (one for video and one for audio), and the documentation specifies that I should use only one for both video and audio

    &#xA;

    I've tried to use the -adaptation_sets flag unsuccessfully, and also the -map flag.

    &#xA;

    Here is one of the commands I've tried :&#xA;ffmpeg -re -i "/Users/user/Desktop/file.mp4" \        -map 0:v -map 0:a \        -use_template 1 -use_timeline 1 -window_size 5 -min_seg_duration 5000000 \        -f dash dash.mpd

    &#xA;

    And with the -adaptation_sets flag :&#xA;ffmpeg -re -i "/Users/aniolpages/Desktop/2023-09-03 Taller colar filtrar assubtilar.mp4" -map 0 -map 0 -c:a aac -c:v libx264 \ -use_timeline 1 -use_template 1 \ -window_size 5 -adaptation_sets "id=0,streams=v id=1,streams=a" \ -f dash dash.mpd

    &#xA;

    Has someone been successful to conform the manifest to YouTube requirements ?

    &#xA;

    Thank you very much !

    &#xA;

  • avcodec/vlc : free multi on fail

    20 septembre 2023, par Michael Niedermayer
    avcodec/vlc : free multi on fail
    

    Fixes : leak
    Fixes : 62164/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_UTVIDEO_fuzzer-6449246523752448

    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/vlc.c