Recherche avancée

Médias (91)

Autres articles (68)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (8920)

  • HLS.js append a new .m3u8 media file

    23 novembre 2019, par Hastalavistababyml

    How can I append a new media file using HLS.js

    window.hls = new Hls();

    let VideoElement = document.getElementById('video')

    let VideoViewr = (dir, element) => {
       if (Hls.isSupported()) {

         hls.attachMedia(element);
         hls.loadSource(dir)

         hls.on(Hls.Events.MEDIA_ATTACHED, function () {
           console.log("video and hls.js are now bound together !");
           hls.on(Hls.Events.MANIFEST_PARSED, function (event, data) {
             console.log("manifest loaded, found " + data.levels.length + " quality level");
             console.log(video.buffered.end(0)-video.currentTime)
           });
         });

       }
    }

    VideoViewr('./video/dir-1/chunk.m3u8', VideoElement)
    VideoViewr('./video/dir-2/chunk.m3u8', VideoElement)

    VideoElement.play()

    HTML

    <video width="400" height="400" controls="controls"></video>

    After the first instance, I want to append another .m3u8 file but getting last appended video in the player

    HLS.append(m3u8file)

    HLS.append(m3u8_another_file)

  • Video Editing App in Android Studio using Android Media API [closed]

    20 février 2024, par Rayhan Khan

    I want to create a video editing app in android studio. And I want to use Android Media API modules like MediaCodex, MediaMuxer etc. I have already created the app using FFMpeg but it has performance issue in android so I have to migrate the app and use Android Media API.

    &#xA;

    I have no idea what to do, I have searched online but I don't know why I can't able to find much content about it.

    &#xA;

    I have also searched about courses on udemy, Lynda, Coursera etc. they also don't have any content.

    &#xA;

    I just want a to know how and where to start this i don't have much time to explore the Android Developer Docs so please can anyone provide me any article or link to a video, or a course in this regard.

    &#xA;

  • avformat/hls : fix seeking around EVENT playlist after media sequence changes

    24 avril 2018, par Aman Gupta
    avformat/hls : fix seeking around EVENT playlist after media sequence changes
    

    The seek functions use first_timestamp, so keep that up to date as
    old segments drop off the playlist.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavformat/hls.c