
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (70)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (6504)
-
avcodec/cbs : allow fine tunning selection of features
21 mars, par James Almeravcodec/cbs : allow fine tunning selection of features
Core framework and AV1 only for now.
This will be useful in an upcoming commit, where CBS will be utilized by
a module outside libavcodec.Signed-off-by : James Almer <jamrial@gmail.com>
-
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
"). -
Ffmpeg throws File Not Found Error in Python but works fine in terminal
6 avril 2022, par Abhishek BhadolaI am trying to concatenate audio and video in my pc through ffmpeg, wrote a code for that


input_video=str("E:\\Downloaded\\temp\\2 Types of knapsack.mp4")
input_audio=str("E:\\Downloaded\\temp\\2 Types of knapsack.mp3")

print(input_video)

subprocess.run([
 "./ffmpeg",
 "-i",
 f"{input_video}",
 "-i",
 f"{input_audio}",
 "-c",
 "copy",
 "E:\\Downloaded\\2 Types of knapsack.mp4"
 ])



now when i try to run the code in python it crashes and throws me an error that the file,path is wrong,but the same ffmpeg command written in terminal works fine


ffmpeg -i "E:\Downloaded\2 Types of knapsack.mp4\2 Types of knapsack.mp4" -i "E:\Downloaded\2 Types of knapsack.mp4\2 Types of knapsack.mp3" -c "E:\Downloaded\2 Types of knapsack.mp4"



any fixes.?