Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (102)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10311)

  • What is the purpose of CHAPTER END in video metadata ?

    20 décembre 2022, par Cypc

    I am learning how to use ffmpeg to add chapters to fairly long recordings as a mean of remembering key timestamps.
After a successful test I got my chapters showing in VLC as little marks on the time bar and in chapter menu, but those marks correspond to START time obviously.

    


    So what is the purpose of END time ? It does not seem to do anything in VLC, is it important to have a chapter starting at the start of the video and one ending at the end of the video ? Is it important to have each chapter end when the next one starts ?

    


    [CHAPTER]
TIMEBASE=1/1
START=1
END=600
title=Chapter


    


  • Is it possible to adjust position of gdigrab recording region during recording ?

    30 novembre 2020, par adelima

    I'm using ffmpeg for recording video from defined desktop region by starting ffmpeg.exe as process with arguments like so :

    


        public static void StartRecording(Video v) {
        string outPath = Path.Combine(Application.StartupPath, "rec", $"{v.FileName}.mkv");
        v.FFMPEG = new Process {
            StartInfo = new ProcessStartInfo() {
                Arguments = $"-hide_banner -y -thread_queue_size 512 -f gdigrab -offset_x {v.Bounds.X} -offset_y {v.Bounds.Y} -video_size {v.Bounds.Width}x{v.Bounds.Height} -show_region 0 -i desktop -vf \"scale=trunc(iw/2)*2:trunc(ih/2)*2\" -c:v libx264 -preset ultrafast -crf 18 -pix_fmt yuv420p \"{outPath}\"",
                WindowStyle = ProcessWindowStyle.Hidden,
                CreateNoWindow = true,
                UseShellExecute = false,
                FileName = Path.Combine(Application.StartupPath, "bin", "ffmpeg.exe"),
                RedirectStandardOutput = true,
                RedirectStandardInput = true,
                RedirectStandardError = true,
            }
        };
        v.FFMPEG.Start();

        new Thread(() => {
            using(StreamReader sr = v.FFMPEG.StandardError) {
                while(!sr.EndOfStream) {
                    Debug.WriteLine(sr.ReadLine());
                }
            }
        }).Start();
    }

    public static void StopRecording(Video v) {
        using(StreamWriter sw = v.FFMPEG.StandardInput) {
            sw.WriteLine("q\n");
        }
        v.FFMPEG.WaitForExit();
        v.FFMPEG.Dispose();
    }


    


    Is it possible to make changes to the -offset_x and -offset_y arguments during recording ? I'm drawing the recording region bounds with directx and want to add a titlebar to it which can be dragged to move the recording region, but I'm not sure how I would let ffmpeg know that I want these offsets changed or whether it's even possible.

    


  • avcodec/aaccoder : Add minimal bias in search_for_ms()

    31 mai 2021, par Michael Niedermayer
    avcodec/aaccoder : Add minimal bias in search_for_ms()
    

    Fixes : floating point division by 0
    Fixes : Ticket8218

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/aaccoder.c