Recherche avancée

Médias (91)

Autres articles (55)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

Sur d’autres sites (8333)

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

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