
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)
-
How can I install ffmpeg to my docker image [closed]
25 octobre 2024, par n179911I have setup a docker image in my Windows 10 Machine. 
Can you please tell me how can I install ffmpeg to that docker image ?


-
Growing MXF files for edit Adobe Premier
18 septembre 2021, par RCJetPilotThe setup is we have live encoders creating a UDP h.264 stream we need to capture the input and edit them live in adobe premier
I have tried


ffmpeg -ss 8 -i 'udp://@239.2.2.40:12001?localaddr=192.168.4.47&overrun_nonfatal=1&fifo_size=50000000' -r 60000/1001 -pix_fmt yuv420p -vcodec mpeg2video -b:v 50M /mnt/VOLUME01/Chris/output1234.mxf -y


And adobe gives me an error with unsupported format or file damaged error on import


-
Using `grab_frame` with `FFMpegFileWriter` Yields Error in the Figure Argument to Subprocess
7 juillet 2024, par GPU ProgrammerI want to generate an MP4 file using frames produced by a rather complicated simulation. If I have to watch the movie as a side affect of generating it I will not complain too much, but would rather not "show" anything on the screen. The overhead of making the movie is trivial compared to the simulations, so I care much more about clean simple code than about performance.


It seemed natural to use
grab_frame
withFFMpegFileWriter
. The following code seemed right.

fig, ax = plot.subplots(figsize=(6.5, 6.5))

assert(animation.FFMpegFileWriter().isAvailable())
writer = animation.FFMpegFileWriter(fig)
writer.setup(fig, "test1.mp4",224)

with writer.saving(fig,"test1.mp4", dpi=224):
 for i in range(len(frameSeg)):
 PlotFrame(i)
 writer.grab_frame()

# writer.finish()

print("done")



It runs, but yeilds the following error




[image2 demuxer @ 0000021fab8c1000] Unable to parse option value "Figure(650x650)" as video rate
[image2 demuxer @ 0000021fab8c1000] Error setting option framerate to value Figure(650x650).
[in#0 @ 0000021fab8c1e00] Error opening input : Invalid argument
Error opening input file ... AppData\Local\Temp\tmpe19ci2wz\tmp%07d.png.
Error opening input files : Invalid argument






subprocess.CalledProcessError : Command '['ffmpeg', '-framerate', 'Figure(650x650)', '-i', 'F :\Users\Kenne.DESKTOP-BT6VROU\AppData\Local\Temp\tmpe19ci2wz\tmp%07d.png', '-loglevel', 'error', '-vcodec', 'h264', '-pix_fmt', 'yuv420p', '-y', 'test1.mp4']' returned non-zero exit status 4294967274.




Did I miss something in
setup
, is it an installation problem, or is it a bug ?

By the way using
FFMpegWRiter
withFuncAnimation
works ...