Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (80)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (8107)

  • FFMEG Watermark over video c#

    21 décembre 2018, par Lắc Si Lê
    public void AddWaterMark(string orginalVideoPath, string waterMarkPath, string outPutVideoPath) { string ffmpeg = System.AppDomain.CurrentDomain.BaseDirectory + @"\Tools\ffmpeg.exe";

       System.Diagnostics.Process ffmpegProcess = new System.Diagnostics.Process();

       System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(ffmpeg);

       startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;

       startInfo.Arguments = " -i " + orginalVideoPath + " -i " + waterMarkPath + " -filter_complex \"overlay=10:10\" " + outPutVideoPath;
       try
       {
           System.Diagnostics.Process.Start(startInfo).WaitForExit();
       }
       catch (Exception err)
       {
           MessageBox.Show(err.Message);
       }
    }

    Hello you guys, My code is used for making fuction of watermark over video. But It was problematic that the code worked without output....Could you guys figure me out ? (I wonder do we have to change our URL file into their correct form ). I used OpenFIleDialog for getting these files URL, like this

    FolderBrowserDialog folderBrowseDialog = new FolderBrowserDialog();
           if (folderBrowseDialog.ShowDialog() == DialogResult.OK)
           {
               outPutWM = folderBrowseDialog.SelectedPath;
           }

    Thank you guys a bunch !

  • Merge remote-tracking branch ’lukaszmluki/master’

    31 mai 2013, par Michael Niedermayer
    Merge remote-tracking branch ’lukaszmluki/master’
    

    * lukaszmluki/master :
    ftp: enhanced error handling
    ftp: reconnect on seek
    ftp: move common commands code to function
    ftp: enhanced status code handling
    ftp: reconnect on read
    ftp: move create control connection to function
    ftp: credentials moved into FTPContext
    ftp: rename function name
    ftp: formatting and typos fixes

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/ftp.c
  • FFMPEG Screen record using AMD GPU encoder in Arch linux

    23 décembre 2020, par Lucas Martins Soares

    I am trying to record my screen with the GPU encoder using the following command :

    &#xA;

    ffmpeg -vaapi_device /dev/dri/renderD128 -f x11grab -video_size 1440x900 -i :0 -vf 'hwupload,scale_vaapi=format=nv12' -c:v h264_vaapi -qp 24 output.mp4

    &#xA;

    But I get the following error :

    &#xA;

    [h264_vaapi @ 0x565330f47580] Driver does not support some wanted packed headers (wanted 0xd,&#xA;found 0x1).

    &#xA;

    the recording starts well but when i finish a 3 second video it takes 3 minutes to process and the&#xA;result is an almost slow motion video.

    &#xA;

    My drivers :

    &#xA;

    xf86-video-amdgpu 19.1.0-2&#xA;xf86-video-ati 1:19.1.0-2&#xA;xf86-video-fbdev 0.5.0-2&#xA;xf86-video-vesa 2.5.0-1&#xA;libva-mesa-driver 20.3.1-1&#xA;mesa 20.3.1-1&#xA;opencl-mesa 20.3.1-1&#xA;

    &#xA;

    vainfo :

    &#xA;

    &#xA;vainfo: VA-API version: 1.10 (libva 2.10.0)&#xA;vainfo: Driver version: Mesa Gallium driver 20.3.1 for AMD VERDE (DRM 2.50.0, 5.9.14-arch1-1, LLVM 11.0.0)&#xA;vainfo: Supported profile and entrypoints&#xA;      VAProfileMPEG2Simple            : VAEntrypointVLD&#xA;      VAProfileMPEG2Main              : VAEntrypointVLD&#xA;      VAProfileVC1Simple              : VAEntrypointVLD&#xA;      VAProfileVC1Main                : VAEntrypointVLD&#xA;      VAProfileVC1Advanced            : VAEntrypointVLD&#xA;      VAProfileH264ConstrainedBaseline: VAEntrypointVLD&#xA;      VAProfileH264ConstrainedBaseline: VAEntrypointEncSlice&#xA;      VAProfileH264Main               : VAEntrypointVLD&#xA;      VAProfileH264Main               : VAEntrypointEncSlice&#xA;      VAProfileH264High               : VAEntrypointVLD&#xA;      VAProfileH264High               : VAEntrypointEncSlice&#xA;      VAProfileNone                   : VAEntrypointVideoProc&#xA;&#xA;

    &#xA;