
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (82)
-
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (9329)
-
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 fdk_aac Static Windows Builds
24 avril 2015, par Benny ChenI’m new in FFMPEG. I have download ffmpeg windows build but libfdk_aac is not enabled. Where I can get the ffmpeg build with complete encoder with libfdk enabled ?
-
MPEG Encoding library for WINDOWS PHONE 8 [on hold]
18 avril 2015, par Ali JeyI am developing a Windows phone app that takes pictures to create Time-lapse Videos.
However I’ve noticed that there aren’t many libraries for Encoding frames into MPEG format for Windows phone platform.My question is this :
- Is there any library at all to encode FFMPEG videos inside Windows phone apps ?
- if not, How can I make one in C# ? (Yes I know it’s going to be hard.)
Where should I Start from ? (please pay attention that the references that I can make inside windows phone app projects are limited !)
Thanks in advance for any help.