
Recherche avancée
Autres articles (49)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (5085)
-
error enoent when assigning path to ffmpeg
12 septembre 2022, par seriouslyI am trying to set up a relay from my rtmp server and I'm using an npm module called
node-media-server
. I have set up my rtmp protocol successfully but when I am trying to set up the relay it expects me to add a path my my ffmpeg library so i npm installed ffmpeg then supplied the node_module path to the relay but I keep on getting erroruncaughtException Error: spawn C:\blah\blah\node_modules\ffmpeg ENOENT
the ffmpeg library definitely exist at the specified location. Why is this happening ? Thanks in advance.

Link to the module im using : https://www.npmjs.com/package/node-media-server




const NodeMediaServer = require('node-media-server');
const path = require('path')
const ffmpegPath = path.join(__dirname, '..', 'node_modules', 'ffmpeg')

const config = {
 rtmp: {
 port: 1935,
 chunk_size: 60000,
 gop_cache: true,
 ping: 30,
 ping_timeout: 60
 },
 http: {
 port: 8000,
 allow_origin: '*'
 },
 relay: {
 ffmpeg: ffmpegPath,
 tasks: [{
 app: 'live',
 mode: 'push',
 edge: 'rtmp://localhost:1936',
 },
 {
 app: 'live',
 mode: 'push',
 edge: 'rtmp://localhost:1937',
 }
 ]
 }
};

var nms = new NodeMediaServer(config)
nms.run();







-
The formula runs text, from bottom to top, it does not end when there are still letters
27 février 2019, par MonsoI have 1 txt file. In the file there is a word, but my formula "y=h-40*t" has a problem, it does not end when the text runs out, the text is not over but it has ended, I want to speed 40 and size The word 120, can you help me find the correct recipe ? Thanks
ffmpeg -loop 1 -y -i a.jpg -i b.mp3 vf "drawtext="fontsize=120:fontfile=arial.ttf:textfile=1.txt:y=h-40*t""
scale=852x480 setsar=1:1 -vcodec libx264 -b:v 1000k -preset superfast 3.mp4 -
doc/general : move contents into a separate file.
22 août 2020, par Nicolas George