
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (46)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (5311)
-
Livestream programatically generated audio/video over RTMP [on hold]
13 février 2018, par user2649681I’m looking for a way to stream data generated by a program over RTMP without saving it to an intermediate file to then stream with ffmpeg. For example, if I have a program to run that constantly generates white noise as samples of audio(e.g. a function that outputs a random sample run within an infinite loop), and, if possible, a screen of a solid, random color, is there a way for me to this audio over RTMP more or less as it’s being generated ? I would imagine, if this is possible, it may involve something along the lines of building up buffers of a fixed number of audio samples and then streaming it somehow over RTMP.
-
FFMPEG not processing whole video for frames extraction [closed]
17 juillet 2023, par NuttertoolsI'm experiencing a weird issue with FFMPEG, on Windows.


I'm trying to extract every single frames from a video, I use ffmpeg to do that with the following command :


ffmpeg -i "input.mp4" "%04d.png"


The extracted frames amount is random, I tested with several videos, let's take an example with a video that counts 2500 frames, sometimes ffmpeg will extract 500 frames, sometimes 1200, sometimes more, sometimes less, it doesn't make any sense.


I have nothing in logs (tried verbose, nothing in console, nothing in dump file after -report cmd added too)


It just stops before the ends of the video, at random frames ...


Sometimes the whole video gets processed aswell, but that is RARE !


Do you have any idea what could be the issue ?


Thanks.


-
Difficulties saving an animation (matplotlib)
14 avril 2020, par Ben C.I have a simple animation that I want to save. I followed the example : https://matplotlib.org/examples/animation/basic_example_writer.html



But I get the following error : RuntimeError : Requested MovieWriter (ffmpeg) not available



I installed ffmpeg and checked via ffmpeg -version that it really is installed and the path correct.



Here is my code :



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

# Set up formatting for the movie files
Writer = animation.writers['ffmpeg']
writer = Writer(fps=15, metadata=dict(artist='Me'), bitrate=1800)

fig, ax = plt.subplots()

x = np.random.uniform(0,1)
y = np.random.uniform(0,1)


scat = ax.scatter(x,y, color= 'blue')
circle = plt.Circle((x,y), radius=0.1, color='blue', fill=False, lw=0.5)
ax.add_patch(circle)

def init():
 scat = ax.scatter(x, y, color = 'blue')
 circle = plt.Circle((x,y), radius=0.1, color='blue', fill=False, lw=0.5)

def animate(i):
 random = np.random.uniform(0,1)
 if random < 0.5:
 scat.set_color('red')
 circle.set_edgecolor('blue')
 else:
 scat.set_color('blue')
 circle.set_edgecolor('red')
 return circle, scat,


ani = animation.FuncAnimation(fig, animate, init_func=init(), interval=1000, blit=True)
ani.save('test.mp4', writer=writer)




None of the proposed solution in RuntimeError : No MovieWriters available in Matplotlib animation worked for me. Any ideas ?



Edit : I am using Windows (10)