
Recherche avancée
Autres articles (48)
-
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 -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...)
Sur d’autres sites (7161)
-
Compiling ffmpeg for android on windows OS
22 octobre 2015, par Srini5After searching a lot on web I didn’t got any proper tutorial which can explain step by step approach of compiling ffmpeg for android on a windows OS. Lots of people suggested to drop windows and compile it on a Ubuntu machine. And I got many tutorial on how to compile on a Linux based machine using android NDK. Is there any tutorial or blog post which can explain how to do it on a windows machine. Or anybody know how to do the same in a windows machine.
-
Calling external applications from windows service [duplicate]
3 novembre 2016, par vvjThis question already has an answer here :
I have a windows service as part of my project which has to communicate with external applications to process the files. One of the external application I am using is
FFMPEG.exe
.My problem is when I call FFmpeg or other applications as the new process. After starting the process, it is getting idle. it will neither get execute successfully nor get an exit.
I am facing this problem with multiple external exe’s and it happens only while calling from the windows service. When I tried the same block of code from a windows forms application, it works perfectly. Below is the sample code I used. Could anyone tell me whats wrong with this.?
Process FFMPEGProcess = new Process();
FFMPEGProcess.StartInfo.FileName =@"ffmpeg.exe";
string strArgument = @" -i \\MachineName\video\file.mp4 -y -s 176x132 -r 0.2 \\MachineName\Image\File%4d.jpg";
FFMPEGProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
FFMPEGProcess.StartInfo.CreateNoWindow = true;
FFMPEGProcess.StartInfo.UseShellExecute = true;
FFMPEGProcess.StartInfo.Arguments = strArgument;
FFMPEGProcess.Start();
FFMPEGProcess.WaitForExit(); -
ffmpeg on windows 'Could find no file' error
14 octobre 2015, par BrooksThis is my command :
"C:\...\ffmpeg.exe" -i "C:\...\audio.mp3" -r 1 -i "C:\...\%%d5.jpg" -qscale:v 1 -shortest -s:v 1280x720 -y -r 30 -pix_fmt yuv420p -filter_complex "[0:a]volume=1[aout]" -map 1:v -map "[aout]" "C:\...\video1.mp4"
this is the error I get everytime :
I’ve searched on google and found various answers so I tried with
%%d5
%%5d
%d5
%5d
with no luck. (my files are named 00000.jpg, 00001.jpg ..., 00005.jpg)What am I doing wrong ?