Recherche avancée

Médias (91)

Autres articles (34)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9258)

  • AForge.Video.FFMPEG used in C#

    30 décembre 2018, par cuong nguyen

    I use Visual C# 2008 and want to write AVI file from bmp sequences.

    I found AForge.Video.VWF but it’s just for "vmw3" or "DIB " codecs and I want to use AForge.Video.FFMPEG but it got error.

    For example I just code :

    using System;
    using System.Collections.Generic;

    using System.Linq;
    using System.Text;
    using AForge.Video.FFMPEG;

    namespace ConsoleApplication4
    {
       class Program
       {
           static void Main(string[] args)
           {
               VideoFileWriter vfw = new VideoFileWriter();
           }
       }
    }

    But I got this filenotfoundexception

    {"The specified module could not be found. (Exception from HRESULT: 0x8007007E)":null}
  • 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 !

  • lavc/vaapi_decode : Use dynamic frame pool if possible

    26 mars 2024, par Haihao Xiang
    lavc/vaapi_decode : Use dynamic frame pool if possible
    

    libva2 doesn't require a fixed surface-array any more, so we may use
    dynamic frame pool for decoding when libva2 is available, which allows a
    downstream element stores more frames from VAAPI decoders and fixes the
    error below :

    $ ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi \
    - i input.mp4 -c:v hevc_vaapi -f null -
    ...
    [h264 @ 0x557a075a1400] get_buffer() failed
    [h264 @ 0x557a075a1400] thread_get_buffer() failed
    [h264 @ 0x557a075a1400] decode_slice_header error
    [h264 @ 0x557a075a1400] no frame !

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/vaapi_decode.c