
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (52)
-
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 -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (5860)
-
What do I need in order to save animation videos from matplotlib in mp3 format ?
27 juin 2022, par DarthMallocI am using python3.8 on Linux Mint 19.3, and I am trying to save an animation created by a cellular automata model in matplotlib. My actual code for the model is private, but it uses the same code for saving the animation as the code shown below, which is a slight modification of one of the examples shown in the official matplotlib documentation :


import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation

fig, ax = plt.subplots()


def f(x, y):
 return np.sin(x) + np.cos(y)

x = np.linspace(0, 2 * np.pi, 120)
y = np.linspace(0, 2 * np.pi, 100).reshape(-1, 1)

fig, ax = plt.subplots()


 
ims = []
for i in range(60):
 x += np.pi / 15.
 y += np.pi / 20.
 im = ax.imshow(f(x, y), animated=True)
 if i == 0:
 ax.imshow(f(x, y)) # show an initial one first
 ims.append([im])

ani = animation.ArtistAnimation(fig, ims, interval=50, blit=True,
 repeat_delay=1000)

 # To save the animation, use e.g.
 #
 # ani.save("movie.mp4")
 #
 # or
 #
writer = animation.FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800)
ani.save("movie.mp3", writer=writer)



When executed, the code produces this error :


MovieWriter stderr:
 Output file #0 does not contain any stream

 Traceback (most recent call last):
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/animation.py", line 234, in saving
 yield self
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/animation.py", line 1093, in save
 writer.grab_frame(**savefig_kwargs)
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/animation.py", line 351, in grab_frame
 self.fig.savefig(self._proc.stdin, format=self.frame_format,
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/figure.py", line 3046, in savefig
 self.canvas.print_figure(fname, **kwargs)
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/backend_bases.py", line 2319, in print_figure
 result = print_method(
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/backend_bases.py", line 1648, in wrapper
 return func(*args, **kwargs)
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/_api/deprecation.py", line 415, in wrapper
 return func(*inner_args, **inner_kwargs)
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/backends/backend_agg.py", line 486, in print_raw
 fh.write(renderer.buffer_rgba())
 BrokenPipeError: [Errno 32] Broken pipe

 During handling of the above exception, another exception occurred:

 Traceback (most recent call last):
 File "/home/justin/animation_test.py", line 36, in <module>
 ani.save("movie.mp3", writer=writer)
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/animation.py", line 1093, in save
 writer.grab_frame(**savefig_kwargs)
 File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
 self.gen.throw(type, value, traceback)
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/animation.py", line 236, in saving
 self.finish()
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/animation.py", line 342, in finish
 self._cleanup() # Inline _cleanup() once cleanup() is removed.
 File "/usr/local/lib/python3.8/dist-packages/matplotlib/animation.py", line 373, in _cleanup
 raise subprocess.CalledProcessError(
 subprocess.CalledProcessError: Command '['ffmpeg', '-f', 'rawvideo', '-vcodec', 'rawvideo', '-s', '640x480', '-pix_fmt', 'rgba', '-r', '15', '-loglevel', 'error', '-i', 'pipe:', '-vcodec', 'h264', '-pix_fmt', 'yuv420p', '-b', '1800k', '-metadata', 'artist=Me', '-y', 'movie.mp3']' returned non-zero exit status 1.
</module>


I have looked at posts on similar queries concerning matplotlib animations, but none have specifically included the error
Output file #0 does not contain any stream
. I have little experience with ffmpeg, so I am wondering what might be missing.

-
Revision 30993 : on force les dernières versions, notamment pour bonux, sinon ça crée des ...
18 août 2009, par vincent@… — Logon force les dernières versions, notamment pour bonux, sinon ça crée des gros bugs
-
Streaming with ffmpeg
15 juillet 2014, par jakebird451I am using ffmpeg to encode a video from a non-mp4 format to an mp4 format. My goal is to provide the video while its encoding to the client (http link). The link is provided with cherrpypy using python. To perform the encoding, I use the
subprocess.Popen
command and redirect the output to a pipe. Providing the file live to a browser is fine, however finding how to encode the video though ffmpeg to get my desired result is not going so well.The only command I found so far that even works is :
ffmpeg -i {inputfile} -nostats -frag_duration 3600 -f mp4 -
. This command "works", the audio is flawless however the video is encoded to what looks like 4x (or 2x) the speed of the original video. So I have been experimenting with commands to see if I can fix the video defect but so far I have yet to fix the same problem. I have been attempting to inject the-vcodec libx264
command, still the same problem.To assist in troubleshooting my problem, I decided to also save the stream to a file. Playing the recorded file yields the same effect. However, interestingly enough, playing the video though VLC and Windows Media Player fixes the video problem and the video plays perfectly fine. Sound and all. It just seems as though the html5 player (with Google Chrome) does not like however I am packing the video. It seems as thought Google Chrome and my encoded file do not play well together.
Continuing with the streaming issue, breaking the encoding process still shows the video encoding just fine in VLC and in Windows Media Player. Well, it plays the video just fine up to until I pressed ctrl-c of course. So it seems that maybe it is not the encoding that is the problem, but either :
- It is a problem with the header for the generated mp4 file
- Google Chome is disregarding the frame rate specified in the file and mandating, say, 60 fps or even 120 ? (which would cause the fast forwarding effect)
The webpage that I am using to show the video is dynamically created and is formed using the template below :
<video controls="controls">
<source src="{link}"></source>
Your browser sux. Fix it.
</video>
The
{title}
and{link}
components are substituted with the corresponding components. If anyone has any suggestions on how to troubleshoot this problem I would be more than willing to listen. As of right now, I am stuck on how to progress with the current state of this issue.