
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (38)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (6419)
-
PHP Sort Order Process Codeiginiter
5 août 2017, par Alan El-nino Malmsteeni use php codeigniter to manage video using FFMPEG, but i dont know how to delete original video after convertion successful.
if(!($_FILES["upload_video"]["type"] == "video/mp4"))
{
$prename = $r.'.'.$ext;
$video = $prename.'.mp4';
$directory_path = "/home/templates/videos/".$prename;
$directory_path_full = "/home/templates/videos/".$prename;
exec("ffmpeg -i ".$directory_path_full." ".$directory_path.".mp4");
// Delete original format video
$this->load->helper("file");
unlink($directory_path_full);
}else{
$video = $r.'.'.$ext;
}When i use "unlink" it work good to delete file, but the video is corrupt (maybe php directly delete it when converting progress)
So, can you help me to create sort order php process for this case ? -
How to specify the audio path for ffmpeg and how to conduct a silence removal using ffmpeg
15 octobre 2020, par LeoI wish to conduct a silence removal for wav files.


import ffmpeg
inPath = "/home/test/Speech/Wang/dataset/testsets/disgust/0_002_00_021_F002_d.wav"
outPath = "/home/test/Speech/Wang/dataset/testsets/disgust/0_002_00_021_F002_d_trimed.wav"
ffmpeg -i inPath -af silenceremove=0:0:-50dB outPath



Error occurred.


File "", line 3
 ffmpeg -i inPath -af silenceremove=0:0:-50dB outPath
 ^
SyntaxError: invalid syntax



How should I assign the path ?


The question is that why we set the threshold to a negative value ?


-
Generating thumbnail from video using php classes
4 janvier 2014, par user2582858I was using the exec command to generate thumbnails via ffmpeg..
My method was :exec("ffmpeg -f image2 -i /home/phedra/imgs/image/img%03d.png -r 12 -s 610x489 /home/phedra/imgs/video/out.avi", $out);
but my senior team member told me that using exec command is not a good practice because it is a dangerous command and It may harm server.. So find any other technique.. I struggled alot but didnt find any comprehensive method other than this..
Can anybody tell me anyother way to generate thumbnail from video using php class from scratch (With an example if possible), so that I could understand completely, Moreover also tell me the library link to download and settings for server if any setting needed to be done before using that technque(My server system is based on Ubuntu and the framework for developement is codeignitter)..(Third party api tool for generating thumbnail is also welcome but the necessary thing is that it must be free :))