Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (52)

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

  • 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

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

Sur d’autres sites (7965)

  • How to store a raw RTSP video stream to a file ?

    12 janvier 2016, par Siva Prasanna

    I’m playing around with the open source FFMpeg tool. I want to save an RTSP video stream to a local file. I came across this question and I tried executing a similar command, but its not working. It doesn’t throw any error either. My command is :
    ffmpeg -i rtsp://test.vibrtech.com/mov/video.sav?MAC=00C2100F124^&channel=2^&GUID=betauser -acodec copy -vcodec copy c:/video.mp4

    but when I execute this command all I’m getting is this(with the cursor being blinked like forever, until I manually invoke ctrl+c) :

    D:\..\bin>ffmpeg -i rtsp://test.vibrtech.com/mov/video.sav?MAC=00C2100F124^&channel=2^&GUID=betauser -acodec copy -vcodec copy c:/video.mp4

    ffmpeg version N-77704-g68eb208 Copyright (c) 2000-2016 the FFmpeg developers
     built with gcc 5.2.0 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-av
    isynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls
    --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca
    --enable-libdcadec --enable-libfreetype --enable-libgme --enable-libgsm
    --enable-libilbc --enable-libmodplug --enable-libmp3lame
    --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg
    --enable-libopus --enable-librtmp --enable-libschroedinger
    --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame
    --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc
    --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp
    --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid
    --enable-libzimg --enable-lzma --enable-decklink --enable-zlib
     libavutil      55. 12.100 / 55. 12.100
     libavcodec     57. 21.100 / 57. 21.100
     libavformat    57. 21.100 / 57. 21.100
     libavdevice    57.  0.100 / 57.  0.100
     libavfilter     6. 23.100 /  6. 23.100
     libswscale      4.  0.100 /  4.  0.100
     libswresample   2.  0.101 /  2.  0.101
     libpostproc    54.  0.100 / 54.  0.100
    _

    Can anyone tell me what I’m doing wrong here ? Or is there any way this could be achieved by using other commands ?

    P.S : I’m getting the stream from this url : rtsp ://test.vibrtech.com/mov/video.sav ?MAC=00C2100F124&channel=2&GUID=betaUser

  • Insert text on sequence of image and create video using imagemagick or graphicsmagick with node.js

    12 décembre 2015, par Keyur Sakaria

    I am trying to create a sequence of image with dynamic text using imagemagick and then convert into video using ffmpeg. The issue I am facing right now :

    1. I was able to put text on image but now I want to move that text and sync with the character on image. Below is the link of what I have achieved

    http://tinypic.com/player.php?v=2ciic8g%3E&s=9#.VmrAZUp97Dc

    The bright white "text goes here" text should sync with the character behind

    Below is the code which I have written

    gm("original_images/moving/" + text + ".png")
       .fill("#FCF7FB")
       .fontSize(40)
       .drawText(x, moveY, "text goes here", "center")
       .font("font/BTTTRIAL_1.ttf")
       .write("newImages/demo" + i + ".png", function(err)
       {
           count++;
           console.log("success : " + err);
           console.log("i : " + i);
           console.log("moving : " + moveX);

           if(count == 72)
           {
               console.log(count);
               var date = moment().format('MMMMDDYYYYhmmssa');
               var cmd = 'ffmpeg -r 17 -i newImages/demo%d.png -c:v libx264 -r 24 -pix_fmt yuv420p output/' + date + '.mp4';

               exec(cmd, function(error, stdout, stderr)
               {
                   console.log(error)
                   console.log(stdout)
                   console.log(stderr)
               });
           }
       });

    I am trying to calculate x and y according to image and im getting the values in decimal, which graphicsmagick is not considering and rounding it thus text is not syncing with image and goes up and down

    If you have any other suggestions or ways to achieve what im trying to do please let me know.

    Thanks in advance.

  • Merge multiple videos using FFMPEG in android

    30 novembre 2015, par Divya

    I’m required to merge ’n’ number of mp4 videos. For now I’m using ffmpeg library and achieved merging 2 videos using the following command :

     String[] complexCommand = {"ffmpeg", "-y", "-i", input_video1,
                               "-i", input_video2, "-strict", "experimental",
                               "-filter_complex",
                               "[0:v]scale=hd720,setsar=1:1[v0];[1:v]scale=hd720,setsar=1:1[v1];[v0][0:a][v1][1:a] concat=n=2:v=1:a=1",
                               "-ab", "48000", "-ac", "2", "-ar", "22050", "-s", "hd720", "-vcodec", "mpeg4", "-b:v", get_br + "k", merged_video_op_path};

    But how can I do it for n videos. Is there any command to do it ?
    Any help would be greatly appreciated.