Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (55)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6944)

  • Positioning the FFPlay window on the screen at a specific location

    15 juillet 2022, par bill

    My goal is to set the position of the ffplay window to some specific coordinates (e.g. 200 x 400).

    


    Initially, I tried using ffplay command line arguments, but I only found how to set window width and height, not position.

    


    Then I tried opening the process in a specific position with C#, but this didn't seem to affect the position of FFPlay

    


    Any suggestions will be appreciated

    


    Here is my code :

    


        static void Main(string[] args)
    {

        Process proccess = new Process();
        proccess.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
        proccess.StartInfo.FileName = "C:\\ffmpeg\\x64\\ffplay.exe";
        proccess.StartInfo.Arguments = "udp://@127.0.0.1:5004?pkt_size=1316";
        proccess.Start();
        Thread.Sleep(100);
        IntPtr id = proccess.MainWindowHandle;
        Console.Write(id);
        Program.MoveWindow(proccess.MainWindowHandle, 0, 0, 500, 500, true);

    }

    [DllImport("user32.dll", SetLastError = true)]
    internal static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);


    


  • mpegaudiodec : change imdct window arrangment for better pointer alignment

    4 janvier 2012, par Vitor Sessak

    mpegaudiodec : change imdct window arrangment for better pointer alignment

  • vorbisdec : read the previous window flag for long windows

    25 février 2012, par Justin Ruggles

    vorbisdec : read the previous window flag for long windows