
Recherche avancée
Médias (1)
-
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 (109)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (15986)
-
Why ts file can not play when it contains only one frame ?
8 mai 2020, par user12072166I have a video file with mp4 format witch can be played very well. And it contains only one frame of video. When I transcode it to TS format. It is black screen when I play it. What can I do to make it perform as mp4 ?


-
want to play m3u8 with hls.js and vue.js
21 octobre 2020, par tomo1127I'm trying to play m3u8 with hls.js and vue.js on codesandbox.


I made m3u8 useing ffmpeg like this.


ffmpeg -i movie1.mp4 -vcodec libx264 -s 1280x720 -strict experimental -acodec aac -b:a 96k -flags +loop-global_header -vbsf h264_mp4toannexb -f segment -segment_format mpegts -segment_time 10 -segment_list mav.m3u8 mav_%04d.ts



The Error from codesandbox say
** The error you provided does not contain a stack trace. **


Aslo I could play mp4 or youtube but not m3u8.


Here is my code


<template>
 <div>
 

 <p>window height: {{ height }}</p>
 </div>
</template>

<code class="echappe-js"><script>&#xA;import Hls from "hls.js";&#xA;&#xA;export default {&#xA; data() {&#xA; return {&#xA; hls: new Hls(),&#xA; height: window.innerHeight,&#xA; };&#xA; },&#xA; methods: {&#xA; playVide() {&#xA; this.height = window.innerHeight;&#xA; const video = document.getElementById("video");&#xA;&#xA; if (Hls.isSupported()) {&#xA; this.hls = new Hls();&#xA; this.hls.loadSource(&#xA; "SAMPLE.m3u8"&#xA; );&#xA; this.hls.attachMedia(video);&#xA; setTimeout(() => {&#xA; video.play();&#xA; }, 1000);&#xA; }&#xA; },&#xA; },&#xA; mounted() {&#xA; window.addEventListener("scroll", this.playVide);&#xA; },&#xA;};&#xA;</script>



I'm not sure this is happen because how I use ffmpg or how I code hls.js


-
How to play sequentially received video clips
21 novembre 2017, par Ye LiI’m working on a prototype project in which some small video clips are sequentially sent over a network. These clips are chunked (using ffmpeg) from a complete video file. Each of the clips is separately playable (containing exactly one GOP). At the destination, I need to smoothly play the sequentially received files as if I were streaming the video, i.e., play the files at the receiver side one by one in one process. May I know whether this is doable ? And if yes, what is the best practice to do this task ?
The network transmission/receiving parts are written in Python, but I’m open to use any other languages/tools for doing the task.