
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (62)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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
Sur d’autres sites (9163)
-
I want to crop videos with black frames on top and bottom
10 février 2019, par jennieI want to crop videos with black frames on the bottom and top according to the frame rate as described in the video after crop
how with ffmpeg ? How to crop Black Bars from Video
Can you help me ! thank you so much !
I want to crop videos with black frames on the bottom and top follow the scale as described in the video .
-
avcodec/pngdec : do not blend on transparent black
28 novembre 2014, par Benoit Fouetavcodec/pngdec : do not blend on transparent black
There is no need to memset the zlib output buffer, as there is no
blending happening there. Instead, do not blend when the dispose
operation is set to ’background’ (tranparent black).Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Black detect ffmpeg and use in a javascript
6 février 2023, par solI had an ffmpeg script that allow me to detect black frames from a video file sample from the bottom.


and i want to create a javascript code that will allow me to do the same function sample from the bottom but its not working.


original code from ffmpeg script :


`ffmpeg -i LKE-BLACK.mp4 -vf "blackdetect=d=0.5:pix_th=0.10" -an -f null - 2>&1 | findstr blackdetect > output.txt


node script :


var fs = require('fs');
const ffmpeg = require("ffmpeg.js");

var createStream = fs.createWriteStream("data.txt");
createStream.end();

const transcode = async ({ target: { files } }) => {
 message.innerHTML = 'Loading ffmpeg-core.js';
 await ffmpeg.load();
 message.innerHTML = 'Start transcoding';
 
 await ffmpeg.transcode('-i', 'LKE-BLACK.mp4', "-vf", "blackdetect=d=0.5:pix_th=0.10", '-an', '-f', 'null - 2>&1', );
 message.innerHTML = 'Complete transcoding';

 fs.writeFile("data.txt", function (err) {
 if (err) throw err;
 console.log('File is created successfully.');
 });
}