
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (39)
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (6687)
-
Which release of ffmpeg is used in the book "Understanding FFmpeg with source code : FFMPEG Fundamentals" ?
28 septembre 2021, par user3344036Just bought the book "Understanding FFmpeg with source code : FFMPEG Fundamentals" from Amazon. I have downloaded ffmpeg release 4.4, but the code has been different from that in the book. Just wondering which release the author was using, can anyone help ?


-
ffmpeg command not working on sony Sony E6653 OS : 7.1.1
13 décembre 2017, par Nisar Ahmadffmpeg command not working on sony Sony E6653 OS : 7.1.1
my command is
"-i "+inputFile+" -i "+watermark+" -filter_complex overlay=main_w-
overlay_w-5:5 "+processedFilePathand I am using writing minds library.
Any one can help me .
Thanks
-
How to distinguish a physical D3D adapter from a virtual adapter used by the Remote Desktop Protocol ?
31 octobre 2023, par rustakI'm currently developing a desktop application(c#/wpf) that decodes video using FFmpeg. I would like to give the user the option to select an adapter for video decoding. I'm using Direct3D method
EnumAdapters
to list available adapters on current device which works fine. The list of available adapters looks something like this :

Adapter 0
 Description: Intel(R) HD Graphics 630
 Vendor ID: 0x8086
 Device ID: 0x5912
 SubSys ID: 0x86941043
 Revision: 4
 Luid: 46459
 Flags: None
 Dedicated Video Memory: 128 MB
 Dedicated System Memory: 0 MB
 Shared System Memory: 8092 MB
Adapter 2
 Description: Microsoft Basic Render Driver
 Vendor ID: 0x1414
 Device ID: 0x8C
 SubSys ID: 0x0
 Revision: 0
 Luid: 50158
 Flags: Software
 Dedicated Video Memory: 0 MB
 Dedicated System Memory: 0 MB
 Shared System Memory: 8092 MB



I have noticed that an additional adapter appears in the list of available adapters when RDP is used. The additional adapter has the same properties as the physical one ; the only difference is in the LUID. The output looks something like this :


Adapter 0
 Description: Intel(R) HD Graphics 630
 Vendor ID: 0x8086
 Device ID: 0x5912
 SubSys ID: 0x86941043
 Revision: 4
 Luid: 46459
 Flags: None
 Dedicated Video Memory: 128 MB
 Dedicated System Memory: 0 MB
 Shared System Memory: 8092 MB
Adapter 1 // <- additional addapter
 Description: Intel(R) HD Graphics 630 
 Vendor ID: 0x8086
 Device ID: 0x5912
 SubSys ID: 0x86941043
 Revision: 4
 Luid: 1322913970
 Flags: None
 Dedicated Video Memory: 128 MB
 Dedicated System Memory: 0 MB
 Shared System Memory: 8092 MB
Adapter 2
 Description: Microsoft Basic Render Driver
 Vendor ID: 0x1414
 Device ID: 0x8C
 SubSys ID: 0x0
 Revision: 0
 Luid: 50158
 Flags: Software
 Dedicated Video Memory: 0 MB
 Dedicated System Memory: 0 MB
 Shared System Memory: 8092 MB



I'm aware that the additional adapter is some kind of virtual adapter used by RDP. I have tried both of them, and it seems that both are suitable for video decoding using FFmpeg.


However, from a UX perspective, it doesn't look or feel right that the combo box contains two adapters with the same name. So my question is : how can I distinguish a physical adapter from a virtual adapter used by the Remote Desktop Protocol ?