Recherche avancée

Médias (91)

Autres articles (106)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (11709)

  • How to get better video quality using Accord.Video.FFMPEG.DLL

    31 juillet 2023, par HighwayRob

    I have developed a Visual Studio Winapp that produces a video file utilizing Accord.Video.FFMPEG.DLL.

    


    The quality the video is less than the original images.
Here is the code and then a sample original image and snapshot of the resulting video.

    


    What can I change to improve the video image ?

    


                VideoFileWriter writer = new VideoFileWriter();
            writer.Open(outfile, width, height, 1, VideoCodec.Mpeg4);
            for (int i = firstrow; i <= testframes; i++)
            {
                Bitmap bitmap = new Bitmap(ffiles[i, 0].ToString());
                writer.WriteVideoFrame(bitmap);
                bitmap.Dispose();
            }


    


    I tried Bitmap image = new Bitmap(width, height, PixelFormat.Format64bppArgb) ;

    


    enter image description here

    


  • ffmpeg overlay video on image and remove video black background

    15 septembre 2021, par Moslem Aslani

    Im using this ffmpeg command to overlay a video on image (with remove black background) :

    


    ffmpeg -loop 1 -i image.png -i video.mp4 -filter_complex [1:v]colorkey=0x000000:0.1:0.1[ckout];[0:v][ckout]overlay[out] -map [out] -t 5 -c:a copy -c:v libx264 -y result.mp4


    


    enter image description here

    


    But as you can see in the picture, the black parts of the ball have also disappeared. How can I solve this problem ?

    


  • How to cut a video to a certain length and add an intro video to it using ffmpeg-python ?

    16 juillet 2021, par kup

    How to cut a video to a certain length and add an intro video to it using ffmpeg-python ?

    


    What i am doing is :

    


            intro = ffmpeg.input(intro)
        mainvid = ffmpeg.input(mainvid)

        v1 = intro.video
        a1 = intro.audio
        v2 = mainvid.video
        a2 = mainvid.audio

        joined = ffmpeg.concat(v1, a1, v2, a2, v=1, a=1).node
        v3 = joined[0]
        a3 = joined[1]

        (
            ffmpeg
            .output(
                v3,
                a3,
                'out.mkv', 
                vcodec='libx265', )
            .run()
        )


    


    But i dont know how to cut mainvid to a certain length like 10 mins before joining, i know ss will help but dont know how to use it for only mainvid.