Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (56)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3977)

  • split the video in several part using ffmpeg

    2 février 2012, par Himiko

    I want to write a small program with help of ffmpeg. I want to process a video by cut the video into several parts, left part, right part...etc.
    How can I do it using ffmpeg ? By the way, are there any documentation explain the API of the ffmpeg ?

  • Video converted to FLV using FFMPEG gets 0 size

    11 novembre 2011, par Sudhir

    I'm trying to convert avi file to flv format using FFMPEG on server, but its giving me problems. On conversion, the file is converted to flv format but no data (0 kb size file). Tried debugging the code but could not. The FFMPEG is installed in CentOS, in path /usr/bin/ffmpeg, and i'm using following command for conversion :

    $srcFile = "/home/mydomain/public_html/demo/test/sample.avi" ;
    $destFile = "/home/mydomain/public_html/demo/test/sample_again.flv" ;
    

    $ffmpegPath = "/usr/bin/ffmpeg" ;
    $flvtool2Path = "/usr/local/bin/flvtool2" ;

    $command = $ffmpegPath . " -y -i " . $srcFile . " -ar 32000 -ab 32000 -f flv -s 320x240 ".
    $destFile . " | " . $flvtool2Path . " -U stdin " . $destFile ;

    exec($command, $output) ;
    print_r($output) ;

    I tried doing :

    exec("which ffmpeg") ;
    

    And it gave me the path /usr/bin/ffmpeg, but get following error when i execute the code :

    Array ( 
    [0] => ERROR : undefined method `timestamp' for nil:NilClass 
    [1] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flv/stream.rb:285:in `lasttimestamp' 
    [2] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flv/stream.rb:274:in `duration' 
    [3] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2/base.rb:181:in `add_meta_data_tag' 
    [4] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2/base.rb:137:in `update' 
    [5] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2/base.rb:47:in `send' 
    [6] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2/base.rb:47:in `execute !' 
    [7] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2/base.rb:46:in `each' 
    [8] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2/base.rb:46:in `execute !' 
    [9] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2/base.rb:206:in `process_files' 
    [10] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2/base.rb:44:in `execute !' 
    [11] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2.rb:168:in `execute !' 
    [12] => ERROR : /usr/local/cpffmpeg/lib/ruby/site_ruby/1.8/flvtool2.rb:228 
    [13] => ERROR : /usr/local/bin/flvtool2:2:in `require' 
    [14] => ERROR : /usr/local/bin/flvtool2:2 
    ) 
    

    What could be the problem. Is this the problem of Flvtool2, if yes then what is it. Please suggest something

  • Ffmpeg Video Codec

    30 janvier 2012, par cilmaz

    I split video like this :

    ffmpeg -ss 00:15:00 -t 00:15:00 -i life.mp4 -acodec copy -vcodec copy life-2.mp4

    After the process i want to play splitted file on flash player (JW Player), it doesnt starts. It waits to download all af video and then start. But the source video (life.mp4) starts playing immediately. Why ?