Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (77)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10920)

  • Find duration in video in paperclip-ffmpeg in ruby on rails

    24 novembre 2015, par Haseeb Ahmad

    Using gem paperclip-ffmpeg in rails for videos.It works fine now I want to find the duration of video in seconds.I found some material but nothing works like

    result = `ffmpeg -i #{self.video.to_file.path} 2>&1`
    r = result.match("Duration: ([0-9]+):([0-9]+):([0-9]+).([0-9]+)")
    if r
     self.duration = r[1].to_i*3600+r[2].to_i*60+r[3].to_i
    end

    But it gives error

    NoMethodError: undefined method `to_file' for #

    How I find video length ?

  • Révision 22557 : PHPDoc du jour sur les filtres reset, end, find, push.

    16 novembre 2015, par marcimat@rezo.net

    + Correction sur le filtre push en testant réellement que c’est un tableau qui arrive pour appliquer array_push.

  • ffmpeg and the 'unable to find suitable output' error

    6 mars 2016, par Ahmet Oğruz

    I want to add an image to a video using ffmpeg as below ;

    ffmpeg -i input.avi -vf "movie=file.png [watermark]; [in][watermark] overlay=10:10 [out]" output.flv

    Runtime.getRuntime().exec("C:\\FFMPEG\\bin/ffmpeg -i D:\\contents\\DoubleKnockout\\videos\\1.mp4 -vf \"movie=D:\\contents\\tall.png  [watermark]; [in][watermark] overlay=10:10 [out]\" D:\\contents\\resultpng.mp4");  

    But I got

    Unable to find a suitable output format

    Any idea what’s going on ?