Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (44)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8262)

  • 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.