
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (63)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (9507)
-
Usurper of FATE
31 juillet 2010, par Multimedia Mike — FATE ServerMans sent a message to the FFmpeg-devel list today :
A new FATE
Mike’s FATE system has done a great job over the last few years. It
is however beginning to prove inadequate in various ways :[various shortcomings already dissected at length on this very blog]
To address the above-mentioned issues, I have been working on a
replacement system which is now ready to be announced.Check it out : http://fate.ffmpeg.org/.
Considering that he just obsoleted something I’ve poured a lot of time and energy into over the last 2.5 years, is my first reaction to this news supposed to be unbridled joy ? Hey, I’m already on record as stating that I wouldn’t mind throwing away all of FATE if there was a better alternative.
I’m not certain but I’m pretty sure that at this point, the original FATE server is practically obsolete. Mans is already testing all of his configurations as well as the configs I test. As soon as the other FATE installations switch over to the new server, I should be able to redirect fate.multimedia.cx -> fate.ffmpeg.org, sell most of my computers, and spend more time with my family.
Thanks, Mans !
-
libvpx 0.9.1 and FFmpeg 0.6
18 juin 2010, par Multimedia Mike — VP8Great news : Hot on the heels of FFmpeg’s 0.6 release, the WebM project released version 0.9.1 of their libvpx. I can finally obsolete my last set of instructions on getting FFmpeg-svn working with libvpx 0.9.
Building libvpx 0.9.1
Do this to build libvpx 0.9.1 on Unix-like systems :- Download libvpx 0.9.1 from http://code.google.com/p/webm/downloads/list
- Unpack, chdir to the source dir, ’./configure && make && make install’
libvpx’s build system has been firmed up a bit since version 0.9. It’s now smart enough to install when said target is invoked and it also builds the assembly language optimizations. Be advised that on 32- and 64-bit x86 machines, Yasm must be present (install either from source or through your package manager).
Building FFmpeg 0.6
To build the newly-released FFmpeg 0.6 :- Install Vorbis through your package manager if you care to encode WebM files with audio ; e.g., ’libvorbis-dev’ is the package you want on Ubuntu
- Download FFmpeg 0.6 from the project’s download page
- Configure FFmpeg with at least these options :
./configure --enable-libvpx --enable-libvorbis --enable-pthreads
; the final link step still seems to fail on Linux if the pthreads option is disabled - ’make’
Verifying
Check this out :$ ./ffmpeg -formats 2> /dev/null | grep WebM E webm WebM file format
$ ./ffmpeg -codecs 2> /dev/null | grep libvpx
DEV libvpx libvpx VP8That means that this FFmpeg binary can mux a WebM file and can both decode and encode VP8 video via libvpx. If you’re wondering why the WebM format does not list a ’D’ indicating the ability to demux a WebM file, that’s because demuxing WebM is handled by the general Matroska demuxer.
Doing Work
Encode a WebM file :ffmpeg -i <input_file> <output_file.webm>
FFmpeg just does the right thing when it seems that .webm extension on the output file. It’s almost magical.
For instant gratification that the encoded file is valid, you can view it immediately using ’ffplay’, if that binary was built (done by default if the right support libraries are present). If ffplay is not present, you can always execute this command line to see some decode operation :
ffmpeg -i <output_file.webm> -f framecrc -
-
Merge pull request #1845 from TeamOneJ/bugfix-1844-make-nested-directories
12 novembre 2012, par Sebastian Tschanm server/php/upload.class.php Merge pull request #1845 from TeamOneJ/bugfix-1844-make-nested-directories Fixes #1844 by adding recursive=true to the mkdir() to allow creation of nested directories