
Recherche avancée
Autres articles (60)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (4880)
-
FFmpeg AVFrame to OpenGL texture without YUV to RGB soft conversion
15 novembre 2018, par zebeurtonI want to decode an encrypted H264 video file on iOS. I already have ported our decryption algorithm and it is working fine. However, we cannot directly use H264 hardware decoder due to lack of API in SDK.
So I am trying to find an alternative to decode H264 video. I am trying to use FFmpeg to decode these video even if there are some possible LGPL license issues. I decode H264 video without any problems and I render H264 frames thanks to OpenGL ES texture. But there are some performance issues. I instrumented my code and the bottleneck is the ffmpeg rescaling and YUV to RGB conversion.
I know that I can use OpenGL ES 2.0 shaders to convert YUV to RGB with GPU acceleration (related post Alternative to ffmpeg for iOS).
I also know how AVFrame structure is composed : data[0] for Y data, data[1] for U data and data[1] for V data. But I do not understand how can I use line size[x] with data[x] to transmit data to OpenGL texture.Does anybody have an example of AVFrame YUV to OpenGL texture ?
Thanks,
David -
Android record video from multiple cameras and composite the multiple videos into one video
22 mars 2024, par tonySilverAndroid Camera2 records video from multiple cameras, adds real-time timestamps to the frames captured by each camera, and finally composites the multiple videos into a single video file. does Android's native interface support these features ? Do I have to user FFMPEG to handle the frames captured by each camera


-
configure : Do not abort when cross-compiling to the native CPU
1er avril 2020, par David Michaelconfigure : Do not abort when cross-compiling to the native CPU
Using a compiler with a different host triplet is considered
cross-compiling, even when it is for the same architecture as the
build system. With such a cross-compiler, it is still valid to
optimize builds with —cpu=host. Make the condition that aborts in
this case into a warning instead, since a cross-compiler for an
incompatible architecture will fail with -mtune=native anyway.Signed-off-by : David Michael <fedora.dm0@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>