Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP 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 (12661)

  • Révision 19020 : Il y a sûrement d’autres cas qui merdent, mais là on peut au moins utiliser les ...

    24 février 2012, par RastaPopoulos -

    Je ne sais pas quel serait la solution générique, mais en tout cas échapper seulement une liste prédéfinies est bizarre, non ? Ça devrait peut-être être toutes les balises blocs.

  • Is there a pre built compiled version of ffmpeg for iphone ?

    29 août 2012, par Meir

    I am struggling in compiling ffmpeg with no success. Is there any ready for use, pre compiled libraries for the iphone ?

    In general, what I need is to stream a radio station in mms wmv format, is there any other solution ?

    Thanks
    Meir

  • Convert video with paperclip and ffmpeg in Ruby on Rails

    16 juin 2014, par Atu

    I want to convert my uploaded video with ffmpeg, but I had few error. I use paperclip and ffmpeg but nothing happen. The structure of my application is one post has_many videos.

    this my video model :

    belongs_to :event
    validates_attachment_presence :source
    has_attached_file :source

    after_create :convert_in_flv, :set_new_filename

    def convert_in_flv
     flv = File.join(File.dirname(source.path), "#{id}.flv")
     system("ffmpeg -i #{source.path} -ar 22050 -ab 32 -s 480x360 -vcodec flv -r 25 -qscale 8 -f flv -y #{flv}")
    end

    def set_new_filename
     update_attribute(:source_file_name, "#{id}.flv")
    end

    and this my video controller

    def create
     @event = Event.find(params[:event_id])
     @video = @event.videos.create(params[:video])
     redirect_to event_path(@event)
    end

    def destroy
     @event = Event.find(params[:event_id])
     @video = @event.videos.find(params[:id])
     @video.destroy
     redirect_to event_path(@event)
    end

    The video is successful upload but not converted. You had any solution ?