Recherche avancée

Médias (91)

Autres articles (58)

  • 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 (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (7373)

  • Is it advisable to use FFMpeg on my local server for video conversion ?

    7 juin 2019, par Yash Desai

    We are starting a video sharing website where users will be able to upload videos in their native formats. However, since video streaming on the web generally is in the FLV format, we need to convert the videos to FLV.

    Also, the site will be hosted on Amazon EC2 and storage using S3.

    Can i run FFMpeg on amazon EC2 ? Is this the best way to go ? Are there other alternatives to video encoding rather than doing conversion on our own server ? I also came across www.transloadit.com which seems to do the same but they are charging a bomb. Are there cheaper and more intelligent alternatives ?

    We are planning to make this website as one of top 10 biggest niche video streaming websites on the internet.

  • Uploaded video and streamio-ffmpeg

    22 août 2016, par Jacob Shiff

    I am trying to convert an uploaded video file directly to a gif using streamio-ffmpeg in my Rails application.

    How can I directly read the uploaded video (an ActionDispatch::Http::UploadedFile object)by streamio-ffmpeg ?

    I have tried the following unsuccessfully :

    movie = FFMPEG::Movie.new(params[:video])
    TypeError: can't convert ActionDispatch::Http::UploadedFile to IO (ActionDispatch::Http::UploadedFile#to_io gives Tempfile)


    movie = FFMPEG::Movie.new(params[:video].open)
    TypeError: no implicit conversion of File into String

    movie = FFMPEG::Movie.new(params[:video].read)
    ArgumentError: invalid byte sequence in UTF-8


    File.open(params[:video].path) do |file|
     movie = FFMPEG::Movie.new(file)
     options = {frame_rate: '10', duration: '00:00:6.000'}
     movie.transcode("test.gif", options)
    end
    TypeError: no implicit conversion of File into String
  • Uploaded video and streamio-ffmpeg

    28 février 2019, par Jacob Shiff

    I am trying to convert an uploaded video file directly to a gif using streamio-ffmpeg in my Rails application.

    How can I directly read the uploaded video (an ActionDispatch::Http::UploadedFile object)by streamio-ffmpeg ?

    I have tried the following unsuccessfully :

    movie = FFMPEG::Movie.new(params[:video])
    TypeError: can't convert ActionDispatch::Http::UploadedFile to IO (ActionDispatch::Http::UploadedFile#to_io gives Tempfile)


    movie = FFMPEG::Movie.new(params[:video].open)
    TypeError: no implicit conversion of File into String

    movie = FFMPEG::Movie.new(params[:video].read)
    ArgumentError: invalid byte sequence in UTF-8


    File.open(params[:video].path) do |file|
     movie = FFMPEG::Movie.new(file)
     options = {frame_rate: '10', duration: '00:00:6.000'}
     movie.transcode("test.gif", options)
    end
    TypeError: no implicit conversion of File into String