
Recherche avancée
Autres articles (104)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (9432)
-
Invalid data when processing input ogg in ffmpeg
23 mars 2023, par Albert Gomáriz SanchaI am getting an ogg file and I am trying to convert it to a mopo3 file using fluent-ffmpef node library. When trying to convert it, then this error is shown :** An error occurred : Error : ffmpeg exited with code 1 : pipe:0 : Invalid data found when processing input**.


Can someone help me please ?


This is my code :


const input = createReadStream(getPath("temp.ogg"));
 // console.log(input);
 // ffmpeg.setFfmpegPath(ffmpegPath);

 // const output = createWriteStream(getPath("temp.mp3"));
 // spawn(`ffmpeg -i ${getPath("temp.ogg")} ${getPath("temp.mp3")}`);
 ffmpeg(input)
 .setFfmpegPath(ffmpegPath)
 .toFormat("wav")
 .on("data", (data) => {})
 .on("error", (err) => {
 console.log("An error occurred: " + err);
 })
 .on("progress", (progress) => {
 // console.log(JSON.stringify(progress));
 console.log("Processing: " + progress.targetSize + " KB converted");
 })
 .on("end", () => {
 console.log("Processing finished !");
 })
 .save(getPath("temp.mp3")); //path where you want to save your file



-
How to decode the video stream of an mp4 file and save the decoded images to local directory in NodeJs
8 août 2018, par Rohit VermaHow to decode the video stream of an mp4 file and save the decoded images to local directory in NodeJs. I have tried ffmpeg and fluent ffmpeg but didn’t get clear idea how to use,As I was getting error while using fluent ffmpeg
Code snippet :
const ffmpeg = require('fluent-ffmpeg')
const probe = require('ffmpeg-probe')
const info = await probe('input.mp4')and in case of ffmpeg I have tried this,
var ffmpeg = require('ffmpeg');
try {
var process = new ffmpeg("VID_20160805_121411556.mp4");
process.then(function (video) {
// Callback mode
video.fnExtractFrameToJPG('C:/Users/PcName/Documents', {
frame_rate : 1,
number : 5,
file_name : 'my_frame_%t_%s'
}, function (error, files) {
if (!error)
console.log('Frames: ' + files);
});
}, function (err) {
console.log('Error: ' + err);
});
} catch (e) {
console.log(e.code);
console.log(e.msg);
}Nothing is working and I didn’t get any clue how to do so.
-
How to convert scte 128 closed caption data to a53 closed caption data ffmpeg ?
1er novembre 2019, par sagar patelI have decoder which is not supported for scte 128 caption, Only support scte a53 caption data.I want to convert scte 128 caption data to scte a53 caption data.
-If any idea or logic to convert scte 128 to a53 caption in ffmpeg.
-Currently ffmpeg only support scte a53 caption data.I want add support to convert scte 128 data to a53 caption data in ffmpeg.