Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (51)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (4661)

  • Révision 23004 : Le squelette fautif ci-dessous provoque un erreur fatale (et Full Path Disclosure...

    10 mai 2016, par esj@rezo.net


    (RUBRIQUES)id_parent>#TITRE

  • Carrierwave watermark a movie

    15 mai 2016, par Felix

    I’m uploading a movie with carrierwave to amazon S3. While uploading I want to watermark the movie.

    How can I do this ? How can I use stermio-ffmpeg while uploading ?

    I’m using a Rails application.

  • Rails Streamio FFMPEG taking a screenshot of the movie and upload with carrierwave

    5 juin 2016, par Felix

    I have got a Form where I can upload a movie. Its uploaded with carrierwave.

    In this process I want to Make a screenshot of the movie while uploading.

    How can I do this with Streamio FFMPEG.

    My code Looks like this at the moment.

    #Laedt ein Video hoch
    def uploadMovie
     @channels = Channel.all
     @vid = Movie.new(movies_params)

     @channel = Channel.find(params[:channel_id])
     @vid.channel = @channel

     if @vid.save
       flash[:notice] = t("flash.saved")
       render :add
     else
       render :add
     end
    end

    Do I have to do this in controller method or in the carrierwave uplaoder ?

    Update : I tried it this way :

    if @vid.save
     flash[:notice] = t("flash.saved")
     movieFile = FFMPEG::Movie.new(@vid.video.to_s)
     screenshot = movieFile.screenshot("uploads/screenshot", :seek_time => 10)
     render :add
    else

    But then I got tis error :

    s3.amazonaws.com/uploads/movie/video/6/2016-04-24_16.26.10.mp4' does not exist