Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (74)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (7250)

  • dnn-layer-math-unary-test : add unit test for sinh

    29 juin 2020, par Ting Fu
    dnn-layer-math-unary-test : add unit test for sinh
    

    Signed-off-by : Ting Fu <ting.fu@intel.com>

    • [DH] tests/dnn/dnn-layer-mathunary-test.c
  • How to stop ffmpeg when recording the desktop to save the file to the hard disk ?

    27 juin 2022, par Eliot Shein

    I'm trying to record the desktop with the ffmpeg and save a video file to the hard disk.

    &#xA;

    using System;&#xA;using System.Collections.Generic;&#xA;using System.Diagnostics;&#xA;using System.Linq;&#xA;using System.Text;&#xA;using System.Threading.Tasks;&#xA;&#xA;namespace Testings&#xA;{&#xA;    internal class FFmpeg_Capture&#xA;    {&#xA;        Process process;&#xA;&#xA;        public FFmpeg_Capture()&#xA;        {&#xA;            process = new Process();&#xA;        }&#xA;&#xA;        public void Start(string FileName, int Framerate)&#xA;        {&#xA;            process.StartInfo.FileName = @"D:\Captured Videos\ffmpeg.exe"; // Change the directory where ffmpeg.exe is.  &#xA;            process.EnableRaisingEvents = false;&#xA;            process.StartInfo.WorkingDirectory = @"D:\Captured Videos"; // The output directory  &#xA;            process.StartInfo.Arguments = @"-f gdigrab -framerate " &#x2B; Framerate &#x2B;&#xA;                " -i desktop -preset ultrafast - pix_fmt yuv420p " &#x2B; FileName;&#xA;            process.Start();&#xA;            process.StartInfo.UseShellExecute = false;&#xA;            process.StartInfo.CreateNoWindow = false;&#xA;            Stop();&#xA;        }&#xA;&#xA;        public void Stop()&#xA;        {&#xA;            process.Close();&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

    And using it in form1 :

    &#xA;

    private void btnRecord_Click(object sender, EventArgs e)&#xA;        {&#xA;            recordToggle = !recordToggle;&#xA;&#xA;            if (recordToggle)&#xA;            {&#xA;                btnRecord.Text = "Stop";&#xA;                record.Start("Testing", 60);&#xA;            }&#xA;            else&#xA;            {&#xA;                btnRecord.Text = "Record";&#xA;                record.Stop();&#xA;            }&#xA;        }&#xA;

    &#xA;

    but the file Testing never saved to the hard disk. my guess is that

    &#xA;

    process.Close();&#xA;

    &#xA;

    is not like ctrl+ c and ctrl + c is what stopping the ffmpeg and save the file.

    &#xA;

    This is working but how to remove the black window of the ffmpeg ?

    &#xA;

    ffmpeg black window

    &#xA;

    using System;&#xA;using System.Collections.Generic;&#xA;using System.Diagnostics;&#xA;using System.Drawing;&#xA;using System.IO;&#xA;using System.IO.Pipes;&#xA;using System.Linq;&#xA;using System.Text;&#xA;using System.Threading.Tasks;&#xA;using System.Windows.Forms;&#xA;&#xA;namespace Testings&#xA;{&#xA;    internal class FFmpeg_Capture&#xA;    {&#xA;        Process process;&#xA;&#xA;        public FFmpeg_Capture()&#xA;        {&#xA;            process = new Process();&#xA;        }&#xA;&#xA;        public void Start(string FileName, int Framerate)&#xA;        {&#xA;            process.StartInfo.FileName = @"D:\Captured Videos\ffmpeg.exe"; // Change the directory where ffmpeg.exe is.  &#xA;            process.EnableRaisingEvents = false;&#xA;            process.StartInfo.WorkingDirectory = @"D:\Captured Videos\"; // The output directory  &#xA;            process.StartInfo.Arguments = @"-y -f gdigrab -framerate " &#x2B; Framerate &#x2B;&#xA;                " -i desktop -preset ultrafast -pix_fmt yuv420p " &#x2B; FileName;&#xA;            process.StartInfo.UseShellExecute = false;&#xA;            process.StartInfo.CreateNoWindow = false;&#xA;            process.StartInfo.RedirectStandardInput = true; //Redirect stdin&#xA;            process.Start();&#xA;        }&#xA;&#xA;        public void Stop()&#xA;        {&#xA;            byte[] qKey = Encoding.GetEncoding("gbk").GetBytes("q"); //Get encoding of &#x27;q&#x27; key&#xA;            process.StandardInput.BaseStream.Write(qKey, 0, 1); //Write &#x27;q&#x27; key to stdin of FFmpeg sub-processs&#xA;            process.StandardInput.BaseStream.Flush(); //Flush stdin (just in case).&#xA;            process.Close();&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

  • Revision a2769bb73d : Reduced delta for kf/gf/arf when at maxq. Delta reduced because of concern abou

    19 octobre 2013, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c



    Reduced delta for kf/gf/arf when at maxq.

    Delta reduced because of concern about popping on some
    very hard clips.

    Also allow some frame recode at speed 2 for kf/gf/arf.

    Change-Id : Ib47dff42da41aa6eec83b7285fcaaca24abb851e