
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (57)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (6708)
-
ffmpeg commands work locally but not on server using ffmpeg heroku buildpack
26 août 2020, par Sarmad S.I am running the latest ffmpeg version. Commands work well locally and I am able to generate a video from images and to write text on the video and save in the desired format. However, not all commands work on server.


I am using heroku as a hosting provider, and I have installed ffmpeg buidpack to be able to run ffmpeg commands.


The problem is that not all commands work on server. For example when I wirte text on video, it does not allow space between
-filter_complex drawtext
commands and even the text. I get an error that complains about those spaces.
Even when I fix it (by removing spaces), it only generates an empty video (0 kb).

Command :


-filter_complex [1]drawtext=fontfile=exljbris-MuseoSansRounded-300.otf: text='here is some text': fontcolor=white: fontsize=38: box=1: boxcolor=black@0.5: boxborderw=5: x=(w-text_w)/2: y=(h-text_h)/2[v1]; [0][v1]vstack



Generating a video from one image works fine on server for some reason. Not really sure what the problem is.


locally i am running windows and using ffmpeg.exe to execute commands.


-
Call to Process works fine with Debug, but it doesn't work in the installed application
6 février 2019, par SantiI am developing a Windows Form program that has callings to ffmpeg library through the class
Process
.It works fine when I run it with the Debug in Visual Studio 2013. But when I install the program and I invoke the operation that call to the ffmpeg
Process
, it doesn’t work. The cmd screen appears an disappears and nothing happens.I have tried to know what can be happening getting a log file with the output of ffmpeg, in case it was a problem in the ffmpeg libraries. However, after executing it the log is empty, what means that the ffmpeg command has not been executed.
Can someone help me, please ?
The code is this :
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "/c " + ffmpegPath + " " + commandArguments;
using (Process processTemp = new Process())
{
processTemp.StartInfo = startInfo;
processTemp.EnableRaisingEvents = true;
processTemp.Start();
processTemp.WaitForExit();
}I am invoking to
cmd.exe
(not directlyffmpeg.exe
) because in the arguments sometimes there can be a pipe (that is why the command starts with "/c
"). -
x86/swr : make pack_8ch functions work with compilers without aligned stack
15 février 2015, par James Almer