
Recherche avancée
Autres articles (13)
-
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (4308)
-
Convolv multi-channel IR with mono audio using commandline (sox, ffmpeg, etc.)
13 mai 2021, par David HealeyHow can I apply a multichannel impulse response to a mono audio file with the resulting audio file being stereo ?


I'd like to do this from the commandline.


-
Automation for Downloading, Encoding, Renaming and Uploading [on hold]
5 février 2019, par Madara UchihaHow do I automate - downloading anime episodes from Torrent > Encode the videos with ffmpeg or gui > rename (with encoder tag) > upload to Google drive ?
Should work 24/7. Need help ! -
fluent-ffmpeg add multiple languages from method dynamically nodejs
18 février 2021, par AmitKumarI am trying to add multiple languages and subtitles to a video dynamically. but I am not able to find any solution, I found many results for the command line.


I want to call this command script from my nodejs method


ffmpeg -i captain-marvel-trailer.mp4 -i tamil.mp3 -i telugu.mp3 -i hindi.mp3 -map 1 -map 2 -map 3 -metadata:s:a:0 language=eng -metadata:s:a:1 language=tam -metadata:s:a:2 language=tel -metadata:s:a:3 language=hin -codec copy multilanguage.mp4



Here is my codes :


lodash.each(payloadData.languages,function(language){
 let start = 0;
 let max = payloadData.languages.length;
 while (start < max) {
 // fname = `${path.resolve(`contents/hindi.mp3`)} -map 1 -metadata:s:a:0 language=hin -codec copy ${finalVideoPath}`
 // ffmpeg().input(fname) 
 start += 1;
 }
})
 
ffmpeg('./sample.mov')
 .withOutputFormat('.mp4')
 .size('1920x1080')
 .on("end", function (stdout, stderr) { 

 })
}).on("error", function (err) {
 console.log("an error happened: " + err.message);
}).save(finalVideoPath)