Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (45)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (5898)

  • Comparing two similar videos of different run time length

    5 décembre 2016, par Sachin Bansal

    I have two videos of a single selenium automation script. One is a baseline video and I want to compare the second video with this baseline video. In comparison I want to capture the screenshots of the frames that are not matching.

    The problem is that the videos might not be of same size and run time as the running of scripts depends on network.

    I have tried ffmpeg for this, but that didn’t result in any fruitful result. Can anyone guide me in a right direction on how to get a head-start in this.

    Thanks

  • Adding an audio track to a video using it's own audio as a source ?

    29 novembre 2016, par user41997

    I have a video file with the following layout :

    • Video
    • DTS audio

    What I would like to do is :

    • Video
    • AAC audio (converted from the DTS source)
    • DTS audio

    I can’t wrap my head around the FFMPEG command I would need to do this, though, since I would need to convert the DTS audio to AAC and then place it ahead of the DTS track. The reason for this is the PS4 media player currently doesn’t let you select audio tracks and it only plays the first one it sees. It doesn’t support DTS audio but I’d like to keep it around.

  • ffmpeg AVPixelFormat and manager C++ System::Drawing::Imaging::PixelFormat conflict

    29 novembre 2016, par H S T

    There is #define PixelFormat AVPixelFormat inffmpeg. You can not use System::Drawing::Imaging::PixelFormat in a header file containing this. How can I usePixelFormat in C # ?

    .h

    using namespace System::Drawing::Imaging;
    public ref class CTest{
       static Imaging::PixelFormat Format24bppRGB = Imaging::PixelFormat::Format24bppRgb
    };

    .cpp

    #include"ffmpeg head file"
    ...