Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (58)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP 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, 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 (7594)

  • Insert frame in video at specific position with ffmpeg

    19 juin 2017, par user2712414

    I’m trying to hold a specific frame of my video for a number of seconds and then resume the video again with ffmpeg.
    For example let’s say that I have a video “movie.mp4” and I want to hold the frame at second 10 for 20 seconds. So I want ffmpeg to create a video that looks like :
    10 first seconds of movie.mp4 -> 20 seconds of the frame -> the rest of movie.mp4

    In resume, I want to insert a frame in the video.
    My video has audio, that’s one of the things that’s giving me a headache.
    Any idea on how to do it ?
    Thank you !

  • Install ffmpeg on S3

    31 décembre 2015, par zaki ahmad

    When I store videos locally it works fine and I find duration of videos easily with

    movie  = FFMPEG::Movie.new("#{self.video.url}").duration

    But now I change storage to S3. It uploads fine but give

    Errno::ENOENT: No such file or directory

    How I fix it ?

  • How do you display things in the rails console for the user in Rails ?

    30 décembre 2014, par Swaathi K

    I am using Streamio-ffmpeg to process files. The gem shows the progress of the transcoding in the console. I want to display this progress to the user. Is there anyway of doing this ?

    This is my helper : (Where the transcoding is done)

    if myfile.filetype == "video"
           movie = FFMPEG::Movie.new(oldpath(myfile))
           movie.transcode(newpath(myfile),"-deadline realtime -aq 10 -qmax 25") { |progress| puts progress }

           FileUtils.rm_rf(oldpath(myfile))

    The { |progress| puts progress } is responsible for printing the progress to the console. Can I display this in my views instead ?