
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 (15)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (4940)
-
Uncaught ReferenceError : CCapture is not defined ?
13 octobre 2024, par The Dead ManI have a simple app to create a canvas and render it. I am using capture js and FFmpeg module for converting videos in my app, but when I run the app I get the following reference error :



Uncaught ReferenceError: CCapture is not defined
 at test.js:67`




Here is test.js :



(function() {
 "use strict";

 var framesPerSecond = 60;
 var numFrames = 20; //framesPerSecond * 60 * 2;
 var thickness = 100;
 var speed = 4;
 var frameNum = 0;

 var canvas = document.getElementById("c");
 var ctx = canvas.getContext("2d");
 canvas.width = 1280;
 canvas.height = 720;

 var progressElem = document.getElementById("progress");
 var progressNode = document.createTextNode("");
 progressElem.appendChild(progressNode);

 function onProgress(progress) {
 progressNode.nodeValue = (progress * 100).toFixed(1) + "%";
 }

 function showVideoLink(url, size) {
 size = size ? (" [size: " + (size / 1024 / 1024).toFixed(1) + "meg]") : " [unknown size]";
 var a = document.createElement("a");
 a.href = url;
 var filename = url;
 var slashNdx = filename.lastIndexOf("/");
 if (slashNdx >= 0) {
 filename = filename.substr(slashNdx + 1);
 }
 a.download = filename;
 a.appendChild(document.createTextNode(url + size));
 document.body.appendChild(a);
 }

 var capturer = new CCapture( {
 format: 'ffmpegserver',
 //workersPath: "3rdparty/",
 //format: 'gif',
 verbose: false,
 framerate: framesPerSecond,
 onProgress: onProgress,
 //extension: ".mp4",
 //codec: "libx264",
 } );
 capturer.start();

 function drawLines(ctx) {
 for (var xx = -canvas.width; xx < canvas.width; xx += 2) {
 var l = (xx - (-canvas.width)) / (canvas.width * 2);
 ctx.beginPath();
 ctx.moveTo(xx, -canvas.height);
 ctx.lineTo(xx, canvas.height);
 ctx.strokeStyle = "hsla(" + ((l * 360 * 24) % 360) + ",100%,50%,0.5)";
 ctx.stroke();
 }
 }

 function render(time) {
 ctx.fillStyle = "#000";
 ctx.fillRect(0, 0, canvas.width, canvas.height);

 ctx.fillStyle = "#FFF";
 for (var xx = 0; xx < canvas.width + thickness * 2; xx += thickness * 2) {
 var x = xx - (frameNum * speed % (thickness * 2));
 ctx.fillRect(x, 0, thickness, canvas.height);
 }

 ctx.save();
 ctx.globalCompositeOperation = "difference";

 ctx.font = "400px sans-serif";
 ctx.textAlign = "center";
 ctx.textBaseline = "middle";
 ctx.fillText(frameNum, canvas.width / 2, canvas.height / 2);


 ctx.save();
 ctx.translate(canvas.width * 0.5, canvas.height * 0.5);
 ctx.rotate(frameNum * 0.01);
 ctx.translate(canvas.width * 0.25, 0);
 drawLines(ctx);
 ctx.restore();

 ctx.save();
 ctx.translate(canvas.width * 0.5, canvas.height * 0.5);
 ctx.rotate(frameNum * -0.013);
 ctx.translate(canvas.width * 0.37, 0);
 drawLines(ctx);
 ctx.restore();

 ctx.restore();

 capturer.capture(canvas);

 ++frameNum;
 if (frameNum === numFrames) {
 capturer.stop();
 capturer.save(showVideoLink);
 } else {
 requestAnimationFrame(render);
 }
 }
 requestAnimationFrame(render);
}());



-
I use ffmpeg to encode and create MPEG file from a source MP4 file. In Mac the encoding is good but in windows it creates random green pixels [closed]
24 mai 2024, par Amudhan RI use ffmpeg 3.4.2 version to encode and create an MPEG-TS file using H.264 encoding. In both Windows and Mac the ffmpeg creates the video without any error. But the resultant video from windows having a green pixels on certain frames. No idea why this is happening.


Below is the encoding command :


ffmpeg -i VIDEO_SOURCE.mp4 -vf scale=720:480 -c:v libx264 -b:v 2M -minrate 2M -maxrate 2M -bufsize 2M -level:v 40 -profile:v main -bf:v 2 -r 30 -crf 22 -x264-params 'keyint=3:min-keyint=3:ref=2:8x8dct=0:weightp=1:subme=6:rc-lookahead=30' -c:a aac -b:a 130k -ar 48000 -f mpegts -filter_complex alimiter=level_in=1:level_out=1:limit=0.15:attack=7:release=100:level=0 VIDEO_ENCODED.mpeg


But the resultant video from windows having green pixels on certain frames. No idea why this is happening.


-
I use ffmpeg to encode and create MPEG file from a source MP4 file. In Mac the encoding is good but in windows it creates random green pixels [closed]
24 mai 2024, par Amudhan RI use ffmpeg 3.4.2 version to encode and create an MPEG-TS file using H.264 encoding. In both Windows and Mac the ffmpeg creates the video without any error. But the resultant video from windows having a green pixels on certain frames. No idea why this is happening.


Below is the encoding command :


ffmpeg -i VIDEO_SOURCE.mp4 -vf scale=720:480 -c:v libx264 -b:v 2M -minrate 2M -maxrate 2M -bufsize 2M -level:v 40 -profile:v main -bf:v 2 -r 30 -crf 22 -x264-params 'keyint=3:min-keyint=3:ref=2:8x8dct=0:weightp=1:subme=6:rc-lookahead=30' -c:a aac -b:a 130k -ar 48000 -f mpegts -filter_complex alimiter=level_in=1:level_out=1:limit=0.15:attack=7:release=100:level=0 VIDEO_ENCODED.mpeg


But the resultant video from windows having green pixels on certain frames. No idea why this is happening.