
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (67)
-
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 (...) -
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 (...)
Sur d’autres sites (8216)
-
Example / Demo application using Carrierwave and ffmpeg gems
18 décembre 2012, par LpLrichI've seen a lot of good example applications using the carrierwave gem for image uploading. I've not seen any for video uploading.
Can anyone share an example / demo Rails application using carrierwave and the ffmpeg gem (streemio-ffmpeg) or another video processing gem ?
Thanks for sharing.
-
Decode to multiple wavs using ffmpeg ?
15 mars 2012, par get8pHeythere, good man.
My goal is to decode an ac3 from avi to multiple wavs - each for each channel, using ffmpeg, please, help me with that.Now, using
ffmpeg.exe -i teh.avi -c:a copy teh.ac3 teh.wav
Would decode it to a sinle wav, and typing teh.wavs won't help...
I know it can be done with other tools, but I want to know how it's achievable with ffmpeg. Thank in advance. -
ffmpeg images to video, how to skip dropdown files ?
12 juillet 2022, par androworki convert images to video using


ffmpeg.exe -f image2 -framerate 0.5 -start_number 1 -i "img%%1d.jpg" -vf scale=640 :-2 -b:v 5M -s 640x480 video.avi


if files 1..100 and all names exists, all good but if some file absent (e.g. 12.jpg) ffmpeg converts 1..11.jpg and stopped.


How to skip these files (can be >1 and names can be random) ??