Recherche avancée

Médias (91)

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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" (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (11175)

  • Overlaying 2 videos using FFMPEG in Android Giving Low Resolution Video Output

    7 janvier 2021, par mirza ali

    I'm overlaying 2 videos using below command
This command works perfectly but returns Low resolution Video output any change to this command which make my video resolution better ...!!?

    


        "-i", FirstVideo, "-f","lavfi","-i","movie=" + SeconedVideo+ 
    
":loop=200,setpts=N/FRAME_RATE/TB","-filter_complex",             
    
"[1:v][0:v]scale2ref[ua][b];[ua]setsar=1,format=yuva444p,colorchannelmixer=aa=1[u];[b][u]overlay=1:1:shortest=1", OutputFilePath


    


  • converting mp4 to mp3 using ffmpeg failing

    26 décembre 2014, par LiveEn

    im trying to convert a mp4 file into a mp3 using ffmpeg on my linux vps

    Currently i have installed ffmpeg to my server and im my php code i have the below

    $saved = 'videos/move1.mp4';
    $out = 'videos/move1.mp3';

    $ffmpeg = "ffmpeg -i ".$saved." -ar 44100 -ab 128k -ac 2 ".$out."";

    $cmd = exec($ffmpeg);

             if($cmd)
                 {
                  echo "success";
                 }
                 else
                 {
                  echo "failed";
                 }

    It always returns failed. can someone tell me what am i doing wrong ?

  • How do i convert videos uploaded by user to .swf ?

    3 avril 2020, par Anish Silwal

    I am creating a website which enables to upload videos. But we know that user can upload any kind of video but the browser can't play them. So, I thought that I somehow can convert them into .swf and play them using a flash player. I tried to use ffmpeg-php but it didn't worked. my code was :

    



    shell_exec('ffmpeg -i in.mp4 out.swf');


    



    It does not show any error neither it returns out.swf.

    



    Please ! help me.