Recherche avancée

Médias (91)

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (12272)

  • When converting .mov to .flv video plays horizontally

    2 janvier 2014, par user291247

    When I record a video (.mov) through my iPhone it display vertically which is right.
    But after converting the .mov to .flv(using ffmpeg) it displays horizontally.

    My code :

    function convert_flv($vidtime,$infile, $outfile, $w = 0, $h = 0, $extra_infile = '', $extra_outfile = '') {
       $parms = '';
       if($w == 0 && $h == 0) {
           //$parms .= '-sameq ';
       } else {
           $parms = '-s {$w}x{$h} ';
       }

       if($vidtime==60) {
           $cmd = ffmpeg($infile, $outfile, $parms.' '.$extra_infile, '-t 00:01:00 -ar 22050 -r 15 -f flv  '.$extra_outfile);
       } else {
           $cmd = ffmpeg($infile, $outfile, $parms.' '.$extra_infile, '-t 00:04:00 -ar 22050 -r 15 -f flv  '.$extra_outfile);
       }

       print_r($cmd);
       return $cmd;
    }
  • ffmpeg -vf transpose not working for output as .mp4 file

    5 août 2014, par user3909162

    I want to rotate iPhone/iPad video to 90 degree, i am using following code

    $input = 'video1.mp4';
    $output = 'output.mp4';

    $command = "ffmpeg -i $input -vf transpose=1 $output";
    exec( $command, $ret );

    the above code is not working for

    $output = 'output.mp4'; //(mp4 file)

    but its working fine when i use

    $output = 'output.avi'; //(avi file)

    Please tell me solution for this i want also compress video in mp4 video.

  • using FFMPEG to convert to MP4 with maximum browsers compatibilty

    6 mars 2016, par Karim

    I’m converting from WMV to FLV using FFMPEG, and my problem is that the FLV videos are so big ! the 15 minutes video’s size ranges between 150MB and 1GB !
    I’m using the following FFMPEG command to convert and split WMV videos :

    nohup nice -1 ffmpeg -y -ss 00:00:00 -t 00:15:00 -async 1 -i INPUT.WMV -acodec libmp3lame OUTPUT.FLV

    And I’ve tried converting to MP4 before and the video size was much smaller than the FLV video.

    So my questions are :

    • Would the MP4 videos have any
      compatibility issues browsers ?
    • Would it work on iPhone, iPad ? (I
      know FLV videos doesn’t work on
      iPhones or iPads)
    • What is the best FFMPEG command to
      convert to MP4 without losing the
      quality of the video ?