
Recherche avancée
Médias (1)
-
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
Autres articles (69)
-
Les images
15 mai 2013 -
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 -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (8584)
-
lavc/vaapi_hevc : fill rext luma/chroma offset in the right way
10 juin 2022, par Xu Guangxinlavc/vaapi_hevc : fill rext luma/chroma offset in the right way
For range extension, the luma/chroma offset is larger than 8 bits, we
need fill the 16 bits version.Signed-off-by : Xu Guangxin <guangxin.xu@intel.com>
Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com>
Signed-off-by : Fei Wang <fei.w.wang@intel.com> -
lavu/hwcontext_qsv : add support for 12bit content on Linux
6 octobre 2022, par Fei Wanglavu/hwcontext_qsv : add support for 12bit content on Linux
P012, Y212 and XV36 are used for 12bit content in FFmpeg VAAPI, so
these formats should be used in FFmpeg QSV too, however the SDK only
declares support for P016, Y216 and Y416. So this commit fudged mappings
between AV_PIX_FMT_P012 and MFX_FOURCC_P016, AV_PIX_FMT_Y212 and
MFX_FOURCC_Y216, AV_PIX_FMT_XV36 and MFX_FOURCC_Y416.Signed-off-by : Fei Wang <fei.w.wang@intel.com>
Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
Signed-off-by : Haihao Xiang <haihao.xiang@intel.com> -
How to use ffmpeg Library in electron?
24 avril 2022, par MrLI use ffmpeg in electronic, but uwp can't use the command line, so I want to use ffmpeg library instead, and install "FFI NaPi". After testing, it can call the library, but I don't know C language and how to call ffmpeg library. Can anyone help me ?


This is my test of "ffi napi". It can really succeed:


c++ code :


extern "C" __declspec(dllexport) int add(int a, int b) {

 return 20;
};



electron js :


var ffi = require('ffi-napi');
 var libm = ffi.Library('Dll1.dll', {
 'add': [ 'int', [ 'int', 'int' ] ],
 });
 
 var rel = libm.add(1,2); // 20
 console.error('rel:',rel);



This is the download website of ffmpeg library:
https://github.com/wang-bin/avbuild


[enter image description here][1]
[enter image description here][2]
[enter image description here][3]
[enter image description here][4]


 [1]: https://i.stack.imgur.com/HTMhK.png
 [2]: https://i.stack.imgur.com/hxsw4.png
 [3]: https://i.stack.imgur.com/5mDLx.png
 [4]: https://i.stack.imgur.com/HAjPE.png



I have no programming knowledge of C + + and do not know how to call these libraries. I just want to edit a video, for example :


ffmpeg -i a.mp4 -c -copy b.mp4