
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (68)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar 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, parThe 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, parLes 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 HastalavistababymlHow 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 KhanI 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.


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.


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


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.


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