Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (35)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (7783)

  • FFMpeg metadata issue

    12 février 2015, par TameHog

    whenever I run ffmpeg -i filename it returns something like this :

    Metadata:
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: isommp42
    creation_time   : 2010-07-16 18:33:45
    Duration: 00:00:24.00, start: 0.000000, bitrate: 2443 kb/s
    Stream #0:0(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s
    Metadata:
     creation_time   : 2010-07-16 18:33:45
     handler_name    : Mainconcept MP4 Sound Media Handler
    Stream #0:1(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 2311 kb/s, 30 fps, 30 tbr, 30k tbn, 60 tbc
    Metadata:
     creation_time   : 2010-07-16 18:33:46
     handler_name    : Mainconcept MP4 Video Media Handler

    Except when I run it from java using :

    ProcessBuilder pb = new ProcessBuilder(new String[]{"ffmpeg", "-i", "filename"});
       pb.redirectErrorStream(true);
       try{
           Process p = pb.start();

           BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
           String bs = "";
           while(br.readLine() != null){
               bs += br.readLine();
               bs += "\n";
           }
           return bs;
       }catch(IOException e){
           e.printStackTrace();
       }

    it gives me this :

         built on Jun 17 2013 23:20:06 with gcc 4.6 (GCC)
     Metadata:
       minor_version   : 0
       creation_time   : 2010-07-16 18:33:45
       Stream #0:0(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s
         creation_time   : 2010-07-16 18:33:45
       Stream #0:1(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 640x480 [SAR 1:1 DAR     4:3], 2311 kb/s, 30 fps, 30 tbr, 30k tbn, 60 tbc
             creation_time   : 2010-07-16 18:33:46
       At least one output file must be specified

    How come when I run it from cmd I get way more data ? Can anybody tell me what I am doing wrong ?

  • referenced wrong issue

    25 avril 2014, par jackmoore
    referenced wrong issue
  • Shell Script - Issue while assigning command from shell script

    18 novembre 2013, par Simon

    I want to build a script for converting a set of .avi movies from a folder to .wmv movies by using the ffmpeg converter.

    My script has the following content :

    for file in *.avi
    do
    replace_string="wmw";
    new_file=${file/avi/$replace_string};
    #echo $new_file
    #echo $file
    ffmpeg -i $file -b:v 2500k /home/alin/WmvMovies/$new_file
    done

    However, it doesn't work. I receive the following error :

    [NULL @ 0x1849040] Unable to find a suitable output format for '/home/alin/WmvMovies/Teo_Pose90.wmw'
    /home/alin/WmvMovies/Teo_Pose90.wmw: Invalid argument

    However, if I try this independently, it works. If I introduce into shell the following command :

    ffmpeg -i Teo_Pose90.avi -b:v 2500k /home/alin/WmvMovies/Teo_Pose90.wmv

    Can someone please explain to me why do I get this behaviour ?