
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (68)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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 (...)
Sur d’autres sites (5160)
-
avcodec/amfenc : add support for QueryOutput wait
11 octobre 2024, par Cameron Gutmanavcodec/amfenc : add support for QueryOutput wait
Enable waiting in QueryOutput() based on driver support to reduce
unnecessary delays.Fix for issue #10622
Co-authored-by : Araz Iusubov <Primeadvice@gmail.com>
-
hw_base_encode : make recon_frames_ref optional
30 août 2024, par Lynnehw_base_encode : make recon_frames_ref optional
Vulkan supports some stupidly odd hardware, that unfortunately,
most modern GPUs happen to be.
The DPB images for encoders may be required to be preallocated
all at once, and rather than be individual frames, be layers of
a single frame.As the hw_base_encode code is written with the thought that either
the driver or the device itself supports sane image allocation,
Vulkan does not leave us with this option.So, in the case that the hardware does not support individual
frames to be used as DPBs, make the DBP frames context optional,
and let the subsystem manage this. -
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.