Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

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 (7816)

  • Grabbing rtsp/rtp stream with libavformat

    19 janvier 2012, par T0ha

    world.
    I'm trying to grab rtsp mjpeg stream from IP-camera (realtime) as described in http://www.inb.uni-luebeck.de/ boehme/using_libavcodec.html, but ported to newer version.
    It works well with mpeg file (loading it full as one AVPacket), but working with stream, avcodec_decode_video2 returns -1 (error). AVPacket in this case is a part of a frame.

    How can I fix this ?

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