Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (57)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (8384)

  • 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
  • FFMpeg video transpose

    26 juin 2014, par Sayaki

    I have movie which is rotated by 90, 180 or 270 degrees. I process that video and make and save processed copy in some place. My problem is that in my processed move rotation is not included e.g. my input video is ratated by 180 degrees but my output video is not rotated at all. Here is my commad :

    ffmpeg -i movie.mp4 -vf crop=480:480:80:0 -strict -2 testMovie.mp4

    How can I apply rotation from my input movie to my output movie.