
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (111)
-
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 ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (10729)
-
dnn_backend_openvino.c : add version mismatch reminder
18 janvier 2021, par Guo, Yejundnn_backend_openvino.c : add version mismatch reminder
The OpenVINO model file format changes when OpenVINO goes to a new
release, it does not work if the versions between model file and
runtime are mismatched.Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
-
Flutter ffmpeg_kit_flutter : get FFmpegKit.executeAsync error
2 août 2022, par Pitu WernoI have prepared a test program to run FFMPEG command and it successfully run
-i "/data/user/0/com.example.test/cache/file_picker/test.mp4" -c:v mpeg4 "/data/user/0/com.example.test/cache/test-1639310478143.mp4"
command. This is just to ensure that ffmpeg_kit_flutter was loaded properly and all permissions has been obtained.

But, I have problem executing
-i "source.mp4" -vf fps=30 "thumb%03d.jpg" -hide_banner
command. The command itself is working well when I run it on windows, for example :

md frame1
ffmpeg -i "test.mp4" -vf fps=30 frame1/thumb%%04d.jpg -hide_banner



(note : double % is to escape the % in windows batch file)


This is what I do in flutter on android :


- 

- Create temporary folder.
- Execute :






String command = '-i "/data/user/0/com.example.test/cache/file_picker/test.mp4" -vf fps=30 "/data/user/0/com.example.test/cache/tmp-1639309602536/thumb%03d.jpg" -hide_banner';
 FFmpegKit.executeAsync(command, (session) async {
 final returnCode = await session.getReturnCode();
 if (ReturnCode.isSuccess(returnCode)) {
 //ok
 } else if (ReturnCode.isCancel(returnCode)) {
 //cancelled
 } else {
 //error
 }
 });



The proses is not working (always going to the error part). My questions are :


- 

- What is the difference between running that command on windows and android ? Why it works on windows but not working on android ?
- How can I get the explanation about any FFMPEG error ? In my case, I only know that wasn't working, but I have no clue why.






-
Revision 28582778b75a9484c64158ba8dd4764475e314b9 : Documentation des iterateurs Iter et IterSQL Utiliser protected plutot que ...
16 décembre 2010, par Cerdic — LogDocumentation des iterateurs Iter et IterSQL Utiliser protected plutot que private, pour permettre des surcharges eventuelles proteger les 3 proprietes de Iter, qui ne doivent pas etre accedees en direct Ajout des proprietes pos et total qui memorisent la position courant et le nombre total de (...)