Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (63)

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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (12626)

  • Unable to Record Video in Jenkins using ffmpeg in Windows System

    12 novembre 2018, par Deepak Kumar Susarla

    I am using ffmpeg to capture video while running protractor scripts. Below ffmpeg code is working fine, when I directly run in windows from command line and able to create the video.

    C:\Jenkins\workspace\test\node_modules\ffmpeg-binaries\bin\ffmpeg.exe -f gdigrab -framerate 30 -s 1024x768 -i desktop -g 1000 -q:v 18 C:\Jenkins\workspace\test\AutomationVideo\Automation-11-7-2018-17.6.23.mpg

    But when I run the same code through jenkins(installed in windows system), showing below error and video is not getting recorded. Please help me in resolving the issue.

    error is :[gdigrab @ 000002395689b400] Capturing whole desktop as 1024x768x32 at (0,0)

    error is :[gdigrab @ 000002395689b400] Failed to capture image (error 5)
    [gdigrab @ 000002395689b400] Could not find codec parameters for stream 0 (Video : bmp, none, 754987 kb/s) : unspecified size
    Consider increasing the value for the ’analyzeduration’ and ’probesize’ options

    Input #0, gdigrab, from ’desktop’ :
    Duration : N/A, bitrate : 754987 kb/s
    Stream #0:0 : Video : bmp, none, 754987 kb/s, 30 fps, 1000k tbr, 1000k tbn, 1000k tbc

    Output #0, mpeg, to ’C :\Jenkins\workspace\test\AutomationVideo\Automation-11-7-2018-17.6.23.mpg’ :

    Output file #0 does not contain any stream

    ============================================================
    FFMPEG Binary Version used :4.0.0
    Windows OS : Windows 10
    Jenkins Version : 2.138.2

  • The System Audio not included when recording screen using tab capture api

    21 septembre 2024, par alpecca

    I am working on a chrome extension that let user record their current tab video + the current system audio for example playing a music on the tab. I read the docs on the web about preserve audio on tab capture api and the audio constraint to set to be true

    


    chrome.tabCapture.capture({
        video: true,
        audio: true,


    


    const stream = await new Promise<mediastream null="null">((resolve, reject) => {&#xA;    chrome.tabCapture.capture({&#xA;        video: true,&#xA;        audio: true,&#xA;        videoConstraints: {&#xA;            &#xA;            mandatory: {&#xA;                minFrameRate: 60,&#xA;                maxFrameRate: 60,&#xA;                minWidth: 1920, &#xA;                minHeight: 1080, &#xA;                maxWidth: 1920,&#xA;                maxHeight: 1080,&#xA;            }&#xA;        }&#xA;    }, (stream: MediaStream | null) => {&#xA;        if (chrome.runtime.lastError) {&#xA;            return reject(new Error(chrome.runtime.lastError.message));&#xA;        }&#xA;        resolve(stream);&#xA;    });&#xA;});&#xA;</mediastream>

    &#xA;

    In the above code, when I set the audio to be true and try to record the screen, the final output doesn't contain any audio.

    &#xA;

    Here is the Media Recorder values :-

    &#xA;

    const recorder = new MediaRecorder(stream, {&#xA;            mimeType: &#x27;video/webm;codecs=H264&#x27;,&#xA;            videoBitsPerSecond: 8000000&#xA;        });&#xA;&#xA;        recorder.ondataavailable = (e: BlobEvent) => {&#xA;            socketRef.send(e.data)&#xA;           &#xA;        }&#xA;  &#xA;        recorder.start(2000);&#xA;

    &#xA;

    And also my ffmpeg in the backend to handle the incoming stream :-

    &#xA;

    command = [&#xA;        &#x27;ffmpeg&#x27;, &#xA;        &#x27;-y&#x27;,&#xA;        &#x27;-i&#x27;, &#xA;        &#x27;-&#x27;, &#xA;        &#x27;-codec:v&#x27;, &#xA;        &#x27;copy&#x27;, &#xA;        &#x27;-codec:a&#x27;, &#xA;        &#x27;copy&#x27;, &#xA;        &#x27;-y&#x27;,&#xA;        &#x27;-f&#x27;, &#x27;mp4&#x27;,&#xA;        recordingFile,&#xA;        # "-"&#xA;        # f&#x27;output{queueNumber}.mp4&#x27;,&#xA;    ]&#xA;

    &#xA;

    Any help would be greatly appreciated :)

    &#xA;

  • lavfi/vf_vpp_qsv : accept P010 input in system memory

    6 décembre 2022, par Haihao Xiang
    lavfi/vf_vpp_qsv : accept P010 input in system memory
    

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

    • [DH] libavfilter/qsvvpp.c
    • [DH] libavfilter/vf_vpp_qsv.c