
Recherche avancée
Autres articles (74)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (3707)
-
Saving animations using ffmpeg and matplotlib
2 juillet 2015, par PedroLagoim new in here and new in python, im doing some animations with animation.FuncAnimation of matplotliib. The animation works perfectly but i´m having problems saving the animations. here is the part of the code of the animation.
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
fig, ax = plt.subplots()
line, = ax.plot(range(N),sin(x[0,:]),'o-')
ax.axis([0,1,-1,1])
def animate(i):
line.set_ydata(sin(x[i,:])) # update the data
return line,
def init():
line.set_ydata(np.ma.array(x[0,:], mask=True))
return line,
ani = animation.FuncAnimation(fig, animate, np.arange(1, 10000),
interval=25, init_func=init, blit=True)
ani.save('2osc.mp4', writer="ffmpeg")
plt.show()where x[ :, :] is previously set. ani.save is saving every frame of the animation as a .npg image instade of saving the movie. I dont know if this is how it is suposed to work and i have to do the movie with the .npg with another program or if im doing something wrong.
Obs : i’ve previously installed ffmpeg and it seems to be working just fine. -
avcodec/pngdec : Copy IHDR & plte state from last thread
29 juin 2015, par Michael Niedermayeravcodec/pngdec : Copy IHDR & plte state from last thread
Previously these chunks where parsed again for each frame with threads
but not without leading to a different path and the potential for
inconsistenciesThis also removes a related special case from decode_ihdr_chunk()
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
How do I simulate rtp (packet) loss simulation ?
18 juin 2015, par HaroldyI previously used JM14.2 to see the cause and effect on the quality of yuv file by the number of slice, FMO, and etc. In the end, I want to increase robustness and resilience to YUV file.
I encoded yuv file first, and then damage the 264 file with the provided simulation rtp_loss (JM14.2) with 5% loss of packets. and then I decoded the 264 file to see the result.
Now I want to try similar simulation with ffmpeg. So I encoded video with this command
ffmpeg -f rawvideo -s:v 352x288 -i akiyo.yuv -vcodec libx264 -preset slower -x264opts slice-max-size=150:bframes=1:keyint=20 -profile:v baseline -f rawvideo hi.264
after I made hi.264 file, I tried to run rtp_loss (JM14.2) packet loss simulation, but I get an error.
I wonder if there is ffmpeg command for rtp loss simulation. If there is, could you tell me how to use it ?
Thanks