Recherche avancée

Médias (91)

Autres articles (59)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (4507)

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