
Recherche avancée
Autres articles (57)
-
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 -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 (...)
Sur d’autres sites (10331)
-
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 ?
-
ffmpeg send live stream from dshow Windows [on hold]
1er octobre 2015, par Thiago AdrianoHow Can I send live stream from my placa Osprey on windows ? I need to play a video in HTML, but I don’t know How Can I do this ... Anybody help me ?