
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (61)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...)
Sur d’autres sites (8670)
-
rtsp : Parse the mode=receive/record parameter in transport lines
10 juillet 2012, par Jordi Ortizrtsp : Parse the mode=receive/record parameter in transport lines
-
unable to successfully close ffmpeg stream in node.js
25 septembre 2022, par K. Russell Smithi'm trying to write a node video app that generates frames using the canvas api (via node-canvas, the project's only npm dependancy right now), and writes it to ffmpeg via a stream to generate a video :


const { createCanvas } = require('canvas');
const { spawn } = require('child_process');
const fs = require('fs');
const canvas = createCanvas(1280, 720);

const ffmpeg = spawn('ffmpeg', [
 '-y',
 '-f', 'rawVideo',
 '-vcodec', 'rawVideo',
 '-pix_fmt', 'rgb24',
 '-s', `${ canvas.width }x${ canvas.height }`,
 '-r', '40',
 '-i', '-', '-f', 'mp4',
 '-q:v', '5',
 '-an', '-vcodec', 'mpeg4', 'output.mp4',
]);

const ctx = canvas.getContext('2d');
ctx.font = '30px Prime';
ctx.fillStyle = 'blue';
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.fillText('Hello Canvas', canvas.width / 2, canvas.height / 2);

for (let i = 0; i < 250; ++i)
{
 console.log(i);
 ffmpeg.stdin.write(Buffer.from(ctx.getImageData(0, 0, canvas.width, canvas.height).data));
}
ffmpeg.stdin.end();



unfortunately, when i run it, the program throws this after writing the frames :


node:events:368
 throw er; // Unhandled 'error' event
 ^

Error: write EPIPE
 at WriteWrap.onWriteComplete [as oncomplete] (node:internal/stream_base_commons:98:16)
Emitted 'error' event on Socket instance at:
 at emitErrorNT (node:internal/streams/destroy:164:8)
 at emitErrorCloseNT (node:internal/streams/destroy:129:3)
 at processTicksAndRejections (node:internal/process/task_queues:83:21) {
 errno: -32,
 code: 'EPIPE',
 syscall: 'write'
}

Node.js v17.1.0



what am i doing wrong ?


-
gstreamer Buffer has no PTS when trying to record video from rtsp stream which is patchy [closed]
7 novembre 2023, par cat_19_nabGetting the following error when trying to record using gst-launch


gst-launch-1.0 rtspsrc location="rtsp://live/video0" ! rtph265depay ! h265parse ! queue ! filesink sync=0 ! splitmuxsink location=video.mp4





ERROR : from element /GstPipeline:pipeline0/GstSplitMuxSink:splitmuxsink0/GstMP4Mux:muxer : Could not multiplex stream.
Additional debug info :
../gst/isomp4/gstqtmux.c(5402) : gst_qt_mux_add_buffer () : /GstPipeline:pipeline0/GstSplitMuxSink:splitmuxsink0/GstMP4Mux:muxer :
Buffer has no PTS.