
Recherche avancée
Autres articles (102)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11898)
-
avcodec/sgidec : Avoid redundant private context
29 septembre 2022, par Andreas Rheinhardtavcodec/sgidec : Avoid redundant private context
SGI is intra-frame only ; the decoder therefore does not
maintain any state between frames, so remove
the private context.Also rename depth to nb_components.
Reviewed-by : Tomas Härdin <git@haerdin.se>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
lavfi/src_movie : remove frame from priv context
11 mai 2014, par Lukasz Mareklavfi/src_movie : remove frame from priv context
This variable is used only inside one function.
There is no need to store it in context.This also may prevent crush by double free frame.
Signed-off-by : Lukasz Marek <lukasz.m.luki2@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
Black screen when recording specific screen / window using ffmpeg [closed]
16 mai, par Mark BrinIssue :
I'm trying to capture the specific window using
ffmpeg
& i've tried these below command for that :

ffmpeg -f gdigrab -framerate 30 -i title="Window Title" -b:v 3M -pix_fmt yuv420p output_FILENAME.webm



And also try changing output format to
.mp4


ffmpeg -f gdigrab -framerate 30 -i title="Window Title" -b:v 3M -pix_fmt yuv420p output_FILENAME.mp4



but the output video just shows the black screen with cursor.


What i've tried :


- 

-
Tried online solutions like Recording Screen with FFmpeg, How to record a specific window using ffmpeg ?, Record specific window using ffmpeg, but none of them worked.


-
even tried some of the tweaks like removing flags like
-pix_fmt yuv420p
also tried-f d3d11grab
but didn't work.

-
When i try desktop capture it works completely fine.


-
I'm using this command to confirm that i'm using correct window title












Get-Process |
 Where-Object { $_.MainWindowTitle -ne "" } |
 Select-Object -Unique MainWindowTitle



System I'm using :


Windows 11


-