
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (37)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
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 (7368)
-
uninitialized constant Paperclip::Error with paperclip-ffmpeg
7 mai 2014, par KashiftufailI am using Paperclip , and paperclip-ffmpeg for processing uploads. Below is my code
class Asset < ActiveRecord::Base
belongs_to :profile
has_attached_file :photo, :styles => {
:mobile => {:geometry => "400x300", :format => 'mp4', :streaming => true}
}, :processors => [:ffmpeg]
validates_attachment_content_type :photo, :content_type => ['image/jpeg', 'image/png', 'image/gif', 'application/msword', 'application/pdf', 'video/x-flv']end
when i upload image or video file then it is working properly. But when i upload PDF or doc
file, this error occurs.
"uninitialized constant Paperclip::Error"
Any help ??
Or How i can put if condition validation if upload file is PDF or Doc. Then i can skip this
below code. Because this is cause of error when file type is PDF or Doc.
":styles => {
:mobile => {:geometry => "400x300", :format => 'mp4', :streaming => true}
}, :processors => [:ffmpeg]"Thanks
-
How do I convert videos to mp4 for use on Android ? [on hold]
11 avril 2014, par user3525211I am trying to use ffmpeg to convert videos (flv,mov,etc) to mp4 for use on android mobile phones. The conversion seemingly works fine. I can see the mp4s on my iphone. But when I test it out on android phones it does not work. I have been googling this problem for two weeks now and I have tried probably 50 different variations of ffmpeg command lines, but without success. I tried upgrading to the latest ffmpeg on my linux server, but I am not linux savvy and am not sure that it did what it was supposed to. I am at my wits end. Am I going about this wrong ? Is ffmpeg the right tool ? Any ideas ?
Here is the command line I have used to successfully convert to mp4s that work on iphone :
ffmpeg -y -i input.mov -s 480x270 -r 30000/1001 -b 128k -vcodec libx264 -vpre slow -vpre ipod320 -acodec libfaac -ac 2 -ar 44100 -ab 128k output.mp4 -
C# Video concatenation using FFMpegConverter
14 avril 2014, par SreerajI need to implement video concatenation in my ASP.NET Web API. I could successfully concatenate some sample videos downloaded from internet using 'FFMpegConverter' Nuget Package . But when I tried concatenating files captured from my mobile and tried opening it, I got the following error.
Below is the code snippet I'm using :
var ffMpeg = new NReco.VideoConverter.FFMpegConverter();
ffMpeg.ConcatMedia(_fileNames, videoRootPath.mp4,
NReco.VideoConverter.Format.mp4, set);These are the Property screenshots of both the mp4 files.
Thanks in advance