
Recherche avancée
Médias (21)
-
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
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (111)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (11723)
-
matplotlib animation ArtistAnimation failure due to ffmpeg unavailable
23 octobre 2017, par OhmI am trying to call matplotlib.animation.ArtistAnimation to make an animation from a series of png images, but I get an error that is connected to the ffmpeg. I have Anaconda installed on my Ubuntu 14.04. The error message that I get is :
UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.
warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')
/home/ohm/anaconda2/lib/python2.7/site-packages/matplotlib/animation.py:782: UserWarning: MovieWriter ffmpeg unavailable
warnings.warn("MovieWriter %s unavailable" % writer)
...
File "/home/ohm/anaconda2/lib/python2.7/site-packages/matplotlib/animation.py", line 810, in save
writer.grab_frame(**savefig_kwargs)
File "/home/ohm/anaconda2/lib/python2.7/contextlib.py", line 24, in __exit__
self.gen.next()
File "/home/ohm/anaconda2/lib/python2.7/site-packages/matplotlib/animation.py", line 196, in saving
self.finish()
File "/home/ohm/anaconda2/lib/python2.7/site-packages/matplotlib/animation.py", line 389, in finish
+ ' Try running with --verbose-debug')
RuntimeError: Error creating movie, return code: 1 Try running with --verbose-debugI’ve tried
sudo apt-get install ffmpeg
, but there is no such package. Someone knows what package I’m missing ? -
matplotlib animation ArtistAnimation failure due to ffmpeg unavailable
18 juin 2016, par OhmI am trying to call matplotlib.animation.ArtistAnimation to make an animation from a series of png images, but I get an error that is connected to the ffmpeg. I have Anaconda installed on my Ubuntu 14.04. The error message that I get is :
UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.
warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')
/home/ohm/anaconda2/lib/python2.7/site-packages/matplotlib/animation.py:782: UserWarning: MovieWriter ffmpeg unavailable
warnings.warn("MovieWriter %s unavailable" % writer)
...
File "/home/ohm/anaconda2/lib/python2.7/site-packages/matplotlib/animation.py", line 810, in save
writer.grab_frame(**savefig_kwargs)
File "/home/ohm/anaconda2/lib/python2.7/contextlib.py", line 24, in __exit__
self.gen.next()
File "/home/ohm/anaconda2/lib/python2.7/site-packages/matplotlib/animation.py", line 196, in saving
self.finish()
File "/home/ohm/anaconda2/lib/python2.7/site-packages/matplotlib/animation.py", line 389, in finish
+ ' Try running with --verbose-debug')
RuntimeError: Error creating movie, return code: 1 Try running with --verbose-debugI’ve tried
sudo apt-get install ffmpeg
, but there is no such package. Someone knows what package I’m missing ? -
Create fragmented MP4 from MP3
25 octobre 2020, par Stefan FalkI am trying to convert an MP3 file to a fragmented MP4 like this :


ffmpeg -i input.mp3 -strict experimental -acodec aac -b:a 256k -f mp4 \
 -movflags faststart+frag_keyframe+empty_moov+separate_moof output.mp4 



However, using Bento4 I can see that there is just one giant
mdat
object instead of a series of those :

[ftyp] size=8+24
 major_brand = isom
 minor_version = 200
 compatible_brand = isom
 compatible_brand = iso2
 compatible_brand = iso6
 compatible_brand = mp41
[moov] size=8+701
 ...
[moof] size=8+62364
 ...
[mdat] size=8+5794679
[mfra] size=8+59
 [tfra] size=12+31, version=1
 track_ID = 1
 length_size_of_traf_num = 0
 length_size_of_trun_num = 0
 length_size_of_sample_num = 0
 [mfro] size=12+4
 mfra_size = 67



I think what I want is this :




(source)


But I can't seem to be able to get this from
ffmpeg
.

I found some other options here like


$ ffmpeg -h muxer=ismv
...
-frag_duration <int> E.... Maximum fragment duration
-min_frag_duration <int> E.... Minimum fragment duration
-frag_size <int> E.... Maximum fragment size
</int></int></int>


but playing around with these didn't change the output.


How can I create fragments of a specific sice e.g. 5 seconds each ?