
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (10091)
-
ffmpeg movies won't play in windows media player
10 janvier 2015, par kjgregoryI am trying to save some fairly simple matplotlib animations as movies in python. I’ve installed ffmpeg, but I don’t really know much about movie encoding and all of the other threads are way over my level of understanding. I’ve tried several different codecs and they all have the same problem.
My problem is that my movies save and I can view them with VLC player, but not with windows media player. My friend seems to be able to play them too, but I’m not sure what hes using. Anyway, I was hoping someone could break it down for me in a simple way and tell me how to encode my movies so that they are playable on the broadest number of systems.
Since I know someone is going to ask, here is my setup :
Windows 7,
matplotlib v1.4.2,
python 2.7.9 32-bit,
ffmpeg v. N-68625-g1728659Below is my code :
the output of the print statements is :(7,30,3)
96
fig = plt.figure()
ims = []
metadata=dict(artist="SeaWizard",title=(self.codename.capitalize()+" "+self.typename.lower()+" sequence"))
Writer = animation.writers['ffmpeg']
writer = Writer(fps=60,metadata=metadata)
dims = (np.shape(self.__baseimg)[0],np.shape(self.__baseimg)[1],3)
prevdata = np.zeros(dims,np.uint8)
for i in range(len(self.bright1)):
data = self.__getimg(i)
steps = int(self.speed[i]/5)
for n in range(steps):
combdata = np.log((n*(data/steps) + (steps-n)*(prevdata/steps))+1)/np.log(self.__imgmax)
im = plt.imshow(combdata)
ims.append([im])
prevdata = data
print np.shape(combdata)
print len(ims)
anim = animation.ArtistAnimation(fig,ims,interval=16)
anim.save('SeaWizardSimulation.mp4',writer=writer, extra_args=['-vcodec', 'lib264'])
plt.show() -
How to record a video and create a file every 1 minute and without stopping media recorder as stopping and starting causing delay
7 janvier 2021, par Karsh SoniI want to develop a functionality where i have to start recording or say start continuous recording for more than 5 hours and for every minute i want to create a video file so that i want to store files of a video every minute without any delay or missing any frame.


Right now to create a file i need to stop the media recorder and which leads to stopping and starting media recorder and it ends up losing 1.5 to 3 seconds of delay based on devices where i want to minimize the delay as negligible as possible.


I am getting callbacks or frames for each second but if i would try to save those bitmaps and then try to convert them into video it might work with 5FPS. but with 30 or 60FPS its not performing as continuous frames wouldn't let me write to files efficiently. even though that is being done in background.


Please let me know if you know any alternate solution or any solution that can help me achieve it.


-
FFMPEG converting media type aswell as relocating MOOV atom [migrated]
11 juin 2013, par Samuel RichardsI have found this line online
ffmpeg -i input.mp4 -c:a copy -c:v copy -movflags faststart output.mp4
Which takes an input, and copies the audio, video and sets the MOOV atom to the beginning in an element called output.mp4. Basically creating the same video with the MOOV atoms in a new place.
I need to convert the type of this media though - so I have the line
ffmpeg -i input.wmv -vcodec h264 -f mp4 output.mp4
My problem is, is this possible in one line ? I know I can run one after another but that creates a couple of videos when I only need the resulting video, which could result in a lot of memory wasted.
I am sure the line
ffmpeg -i input.wmv -movflags faststart -vcodec h264 -f mp4 output.mp4
Is legitimate, but without the straight copies, this takes a long long time to compute.
Any input on MOOV atoms and ffmpeg computation is welcome.