
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (82)
-
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, (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (5278)
-
How to extract audio from a video with ffmpeg in C++ ?
6 novembre 2011, par Gp2mv3I'm using FFmpeg to extract informations about a video file.
But i want to extract the audio channels to read it with FMOD.How can I do that ? Is it simple ?
Do you know a good tutorial about FFmpeg in C++ ?
Thanks
-
Revision 52af8e3ee6 : flv.h, flvmeta.c, flvdump.c : Added support for Screen Video V2, and On2 VP6 with
20 septembre 2007, par Marc NoirotChanged Paths :
Modify /AUTHORS
Modify /ChangeLog
Modify /Makefile.am
Modify /README
Add /THANKS
(from /AUTHORS
:7eef48a76c31888eb3e6267fb8c200419059f1dd)
Add /TODO
Modify /flv.h
Modify /flvdump.c
Modify /flvmeta.c
flv.h, flvmeta.c, flvdump.c : Added support for Screen Video V2, and On2 VP6 with
alpha channel.
flvdump.c (compute_metadata) : Fixed a compilation issue on MacOSX caused by a
misplaced minus sign.
flvmeta.c (main) : Added protection against giving the same file as input and
output.
flv.h, flvmeta.c : Fixed the padding in the flv_tag to better reflect its role.
flvmeta.c : Made error messages more uniform.
flvmeta.c (compute_h263_size) : Added Picture Start Code check.
flvdump.c (main) : Suppressed a compilation warning.
Makefile.am : Added -Wall.
Makefile.am : Removed non-existant directory `doc' from EXTRA_DIST.
Added THANKS, TODO standard files.
AUTHORS, README, Changelog : Standard stuff. -
Create video from image sequence starting at image_100
22 février 2014, par JohannaI'm using ffmpeg to convert a sequence of images into a .mov file. The command line I use is :
ffmpeg.exe -f image2 -i im_%04d.jpeg -r 25 -sameq -vcodec mjpeg out.mov
It works fine if the first image of the sequence starts at im_0000, but when the first image starts for example at im_0100, then I get an
im_%04d.jpeg: Error number -2 occurred
How can I force it to analyse the sequence, no matter what number the first image is ?