
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (96)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12245)
-
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.
-
How can I stream then play YUV format with/without VLC/FFMPEG ?
13 janvier 2023, par orfruitI'm able to play a local YUV file through VLC (as expected)


.\vlc.exe --demux rawvideo --rawvid-fps 25 --rawvid-width 480 --rawvid-height 360 --rawvid-chroma I420 out.yuv



Also FFPLAY is playing well


.\ffplay.exe -f rawvideo -pixel_format yuv420p -video_size 480x360 out.yuv



Conversion to YUV was done with FFMPEG


.\ffmpeg.exe -i "video.mp4" -c:v rawvideo -pixel_format yuv420p out.yuv



However, I'm not able o stream it and play'it over local network.
I know, it sounds crazy :) but I plan to use VLC as a monitor/debugger for some YUV data.


The original MP4 file is streamed/played fine with VLC (test on the same computer)


.\vlc.exe "video.mp4" --sout="#std{access=http, mux=ts, dst=:55555/}"
.\vlc.exe http://192.168.0.174:55555/



So the big question !
How can I stream the YUV format and VLC recognise an play it as well ?


All that I tried with VLC is not playable.


Thanks for any hints !