
Recherche avancée
Autres articles (23)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
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 (5569)
-
Ffmpeg concat do not work with mp4 videos in C#.Net [duplicate]
16 juillet 2021, par Bhupendra S RaoI am trying A.mp4,B.mp4,C.mp4 files to be concated in sequence into D.mp4.


I tried variety of concat commands but its not working well, and audio , video are not synch.
Also D.mp4 is going large in size and time.


Pls provide a sample that can work on c#.Net.


Thanks in Advance
Bhupendra


-
How do I get ffmpeg to work on my website ?
20 septembre 2023, par Sam Cordinffmpeg works on my local computer when I provide the absolute path for it or make it work globally by editing the environment variables.


But on my website it doesn't work at all. I uploaded ffmpeg.exe, ffplay.exe, and ffprobe.exe to public_html/


Here is my code :


<?php
 ini_set ('display_errors', 1);
 ini_set ('display_startup_errors', 1);
 error_reporting (E_ALL);
 $image1 = "/home/mywebsitename/public_html/uploads2/1.png";
 $image2 = "/home/mywebsitename/public_html/uploads2/2.png";
 $ffmpeg = "/home/mywebsitename/public_html/ffmpeg";
 $command = $ffmpeg." -i ".$image1." -vf scale=100:-2 ".$image2;
 system($command);
?>



It's supposed to make one image file mimic another, while having some differences in size and quality.


I enabled the system function in my php.ini file which allowed it to work, and it doesn't give me an error on that anymore.


I also changed the permissions of all the files and folders involved(uploads2 folder, 1.png, 2.png, the ffmpeg programs) to 777 which allows everything from read, write and execute.


However, nothing outputted, and the files stayed the same. How do I get ffmpeg to work on my website ?


-
FFprobe doesn't the work in node child_proces
17 mai 2023, par Viktor KushnirHow to invoke the following command in a node.js :


ffprobe -v quiet -of json -show_entries format a.aif



I try to do :


const ffprobe = child_process.spawn("ffprobe", [
 '-v', 
 'quiet', 
 '-of', 
 'json', 
 '-show_entries', 
 'format',
 filePath,
 ]);



But it doesn't work. Tried other variants, but it doesn't work either. I need to get the metadata of the audio file in my application node, how do I do this with ffmpeg ?


Only this work :


const ffprobe = child_process.spawn("ffprobe", [
 filePath,
 ]);



But I want to remove the data I don't need.