
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (52)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (7795)
-
Screen capture in CircleCI VMs in macOS [closed]
16 août 2024, par Anton ShkurenkoI'm trying to record test videos using either ffmpeg or appium mac2 driver (as far as I know, it uses ffmpeg behind the scenes anyway)


deviceId == 0 is screen capture in CircleCI VM.


In python code is simple :


appium_driver.start_recording_screen(deviceId=0)


Or using raw ffmpeg :


ffmpeg -f avfoundation -i "0" -t 10 output.mp4


But I can't give permissions somehow. Once I start video recording, there is a popup :




And an error :


[ffmpeg] objc[23088]: class 'NSKVONotifying_AVCaptureScreenInput' not linked into application


What I've tried :


basically main are ffmpeg and .machine-agent, others are just out of desperation 🙂


- macos/add-permission:
 bundle-id: /Applications/Utilities/Terminal.app
 permission-type: kTCCServiceScreenCapture
 - macos/add-permission:
 bundle-id: /private/tmp/.machine-agent
 permission-type: kTCCServiceScreenCapture
 - macos/add-permission:
 bundle-id: /usr/local/bin/ffmpeg
 permission-type: kTCCServiceScreenCapture
 - macos/add-permission:
 bundle-id: /opt/homebrew/bin/appium
 permission-type: kTCCServiceScreenCapture



P.S.
Screen capturing via applescript and quicktime doesn't work for me (I can't click "Record" button). What I've also tried : wrap ffmpeg into apple
Automator
orApple Script
to make a fake app and give permissions to it, but it didn't work neither.

-
lavu/opencl : replace va_ext.h with standard name
23 novembre 2018, par Ruiling Songlavu/opencl : replace va_ext.h with standard name
Khronos OpenCL header (https://github.com/KhronosGroup/OpenCL-Headers)
uses cl_va_api_media_sharing_intel.h. And Intel's official OpenCL driver
for Intel GPU (https://github.com/intel/compute-runtime) was compiled
against Khronos OpenCL header. So it's better to align with Khronos.Signed-off-by : Ruiling Song <ruiling.song@intel.com>
-
nvenc : Add default value for AVCodecContext::refs
8 juin 2017, par Srinath K Rnvenc : Add default value for AVCodecContext::refs
AVCodecContext::refs is used to control the DPB size to be used by the
encoder. The default value for AVCodecContext::refs as set in
libavcodec/options_table.h is 1.This patch sets AVCodecContext::refs to 0 for h264_nvenc and hevc_nvenc in
order to let the driver take the decision of the correct DPB size to use in
all cases.Signed-off-by : Srinath K R <skr@nvidia.com>
Signed-off-by : Luca Barbato <lu_zero@gentoo.org>