
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (111)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (11466)
-
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.