
Recherche avancée
Autres articles (23)
-
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (4803)
-
Revision 5966acc1be : Merge "Properly initialize segmentID in nonrd coding path"
6 octobre 2014, par Yaowu XuChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Merge "Properly initialize segmentID in nonrd coding path" -
ffmpeg.FS('readFile', 'demo.mp4') error. Check if the path exists
31 août 2022, par SAMEERI'm trying to convert recordRTC webm file to mp4 using ffmpeg.js library in nextjs project, during conversion showing this issue


ffmpeg.FS('readFile', 'demo.mp4') error. Check if the path exists



const stopRecording = async () => {
 if (recordRef.current) {
 let blob = {}
 recordRef.current.stopRecording(function(url) {
 blob = recordRef.current.getBlob()
 });
 const webmFile = new File([blob], 'video.webm', {
 type: 'video/webm'
 })
 convertBobToMpeg(webmFile)
 }
}


const convertBobToMpeg = async (webmFile) => {
 await ffmpeg.load();
 await ffmpeg.FS('writeFile', 'video.webm', await fetchFile(webmFile))
 ffmpeg.run('-i', 'video.webm', 'demo.mp4');


 const data = await ffmpeg.FS('readFile', 'demo.mp4');
 setVideo_obj(URL.createObjectURL(new Blob([data.buffer], {
 type: 'video/mp4'
 })))
}



-
Spaces in file name (not path) in ProcessStartInfo C#
19 juillet 2016, par RaulpI am running ffmpeg using C# ’s ProcessStartInfo where I have to convert the files from one format to another.Those files having no spaces in them is working fine but those having spaces are getting stuck at the error.I think this is due to the spaces in the file name.
e.gstartInfo.Arguments = "-i " + filename+ ".mov-q:a 0 -map a " + filename+ ".mp4";
filename is derived at the run time by parsing the directory .
typical error prone filename e.g is = "this is my file"How can this be resolved.