Recherche avancée

Médias (91)

Autres articles (38)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (2573)

  • unable to stream video using ffmpeg

    24 septembre 2015, par AGS

    I’ve grabbed an Image from the video capture card with opencv. I want to process each frame and send it back as a video stream. so, to do this I’ve written that video to a location using videowriter class in opencv and I’ve tried to stream that video using ffmpeg but the output isn’t satisfactory(gives stuttering effect), I’ve used mjpeg stream method to stream the video but that was a failure too.

  • VideoReader decodes different Frame counts on different computers

    7 février 2014, par vishal

    I have a large video clip of .avi format(approx 1 hour in length). I read the file using VideoReader in Matlab. Surprisingly the number of frames I get on two different computers vary. Below are my system details along with the number of frames I get.

    System 1 :
    OS : Windows 8.1 (x64)
    Matlab Version : 2013b
    Media Package installed : (default, didn't install anything separately. VLC Player is also there on the PC)
    Number of frames decoded in Video : 119391

    System 2 :
    OS : Windows 7 (x64)
    Matlab Version : 2013b
    Media Package installed : ffMpeg
    Number of frames decoded in Video : 119653

    It appears the difference in frame counts is because of different codecs being used in the two cases ?

    How can I align the H264 decoder versions in the two cases ? In case I install ffmpeg on System 1, how do I configure Matlab to use that particular decoding library.

    And also I would like to know why two different codecs should yield different number of frames on decoding the same video clip !!

  • How to avoid stopping or record all dynamic videos in the process of capturing screen video with ffmpeg from a python program ?

    3 décembre 2020, par fengnix

    I have many robotframework test cases and in the first case, a ffmpeg command like the following is invoked to record the whole running process :

    &#xA;

    ffmpeg -framerate 30 -f gdigrab -i desktop -c:v libx264rgb -crf 0 -preset ultrafast output.mkv&#xA;

    &#xA;

    Whenever I firstly run all cases and then manuually run the above command from an addition command console, the recorded video always looks fine, it looks like all contents on the screen can be correctly captured.

    &#xA;

    However, once I execute the command the same as the above one in the first case by call the following code :

    &#xA;

    p=subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)&#xA;

    &#xA;

    and then in the final test case the record process is stopped by calling the following code to tell ffmpeg that we want to stop the recording :

    &#xA;

    p.stdin.write(bytes("q",&#x27;UTF-8&#x27;))  &#xA;

    &#xA;

    the final result video only contain correct contents of the "start" and the "end" of the whole process, but all other contents no longer changed and seemd just a static image, which means all the dynamic effects on the screen cannot be captured.

    &#xA;

    Could anyone be so kind as to let me know what the matter is and how to solve it ?

    &#xA;