
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (51)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (6654)
-
What's the most performant way to encode an mp4 video of frames from a webgl canvas using Javascript in a web browser ?
17 janvier 2024, par Keith CarterI can capture the frames from the canvas using readPixels (https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/readPixels) but then what ?


I think there are a few wasm versions of ffmpeg but they're slow.


I found this web assembly mp4 encoder but it's no longer supported and doesn't work in Chrome on my phone (Android 13).


Any other suggestions ?


-
"Widen" the stereo with Web Audio API
20 février 2018, par Dan P.I am trying to use the Web Audio API to match an ffmpeg command I run on the server to widen the stereo of a audio tracks.
With ffmpeg, I use : https://ffmpeg.org/ffmpeg-filters.html#stereowiden
More specifically, this my ffmpeg command :
stereowiden=delay=1:feedback=0.13:crossfeed=0:drymix=1
In JS with the Web Audio API I’ve tried using the
StereoPanNode
(https://developer.mozilla.org/en-US/docs/Web/API/StereoPannerNode) but this only seems to pan the audio left and right. I’ve also tried to combine it with theDelayNode
(https://developer.mozilla.org/en-US/docs/Web/API/DelayNode), still in vain.How would you achieve that ?
-
How to reencode a h264 wiiU to a standard format video
26 juin 2016, par didix16I’m trying to make a bridge between wiiU and web interface to view the video h264 signal. I’m not familiar with video programming but I’m searching some info about it. Following this documentation :
- http://libdrc.org/docs/re/sc-vstrm.html
- http://libdrc.org/docs/installation.html#patched-dependencies
It says that wiiU works with a H.264 variation. So since there is someone who made a h264decoder of wiiU in python (https: //github.com/justjake/drc-sim-keyboard/blob/master/H264Decoder.py) I’ll want to decode that kind of h264 and transform it to some kind of standard video for stream and get it over
<video></video>
tag on a html5 web page. It is possibly do it with ffmpeg libraries ?If it, can someone tell me how ? I’m programming the bridge in C++.
Oh yes, at the moment I’m capturing the data from udp socket, so I just need transform the incoming data detailed in sc-vstrm.html documentation into some web stream video standard.
Thank you so much guys :).