
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (53)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (7871)
-
Videos to jpg image ffmpeg error av_interleaved_write_frame
26 mai 2021, par Loic BchI'm making a program in c# in which I'm using ffmpeg to cut video into frames.
I'm doing it this way in my program :


ffmpegPath = "C:\\Program Files (x86)\\ffmpeg\\ffmpeg32.bat";
string videoPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "video.avi");

Process process = new Process();
 process.StartInfo.FileName = ffmpegPath;
 process.StartInfo.Arguments = @"-i " + videoPath + " -qscale:v 2 image%03d.jpg";
 //process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
 process.Start(); // On cut la vid avec ffmpeg 



This code works perfectly fine in debugging mod and display all my images
Now I want to make a setup to install the program, so I'm using InnoSetup to make a setup but when I install the program and try to run the same code it display the command prompt with ffmpeg error :
"cannot display image2.jpg : av_interleaved_write_frame() : I/O error occurred
ffmpeg error


if someone can help me on why I'm getting this error in release and not in debug mode ? Why ffmpeg can't execute the request correctly after the setup since I'm changing nothing ?


I already tried to double the % on ffmpeg request but it didn't work, all the paths are correct and the input file is not damaged or anything.
The ffmpeg request works fine when I execute it directly from the prompt.


-
Revision 35436 : Petites pétouilles en passant par là (écriture aux dernières normes ...
22 février 2010, par marcimat@… — LogPetites pétouilles en passant par là (écriture aux dernières normes ISO)…
-
Add watermark text on mkv video using ffmpeg on windows version
27 mars 2018, par Movie nowI want to put a text watermark on my mkv video using ffmpeg which appears almost 3 times for a short period of time in the whole video.
The code that i am using :
ffmpeg
-i Kaalakaandi.mkv
-map 0
-vf "drawtext=enable='between(t,600,660)':fontsize=20: \
fontfile=C:\Windows\Fonts\arial.ttf:
text='For More Visit Movienow.me':
x=w-tw-10:
y=h-th-10" -c:
v libx264 output.mkvBut I am getting this error :
At least one output must be specified