
Recherche avancée
Autres articles (66)
-
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 (9073)
-
WPF transparent window with alpha channel
11 mars 2017, par KerberosI have a wpf transparent window I would like to capture it with alpha channel using ffmpeg or any other algorithm. I have searched more but I could not find clear answer. I am newbie for this algorithm. Can I do this or not. Thank you in advance
-
Decrease size of video in android with minimal loss of quality
26 mai 2023, par Koushik RoyI am recording video using camera intent and getting displaying it in a videiview. Now i want to upload it, But it is very big in size. I want to compress it using FFMPEG as I found the many article and in SO also, but i didn't find any clear article with codes.


Can anyone help me with ffmpeg code ?
Is there any other way to do it in android ?
Thanks in advance.


-
How to create transparent hevc / h265 mp4 video with libx265 / FFmpeg without hardware acceleration ?
1er octobre 2024, par Igor StepinAs a source there are series of transparent png files.


It's clear how to create transparent webm :


ffpmpeg -framerate 30 -i 'frame-%d.png' -f webm -vcodec libvpx-vp9 -b:v 0 -pix_fmt yava420p my.webm



It's also clear how to create transparent mp4 using Apple hw (videotoolbox api) :


ffpmeg -framerate 30 -i 'frame-%d.png' -f mp4 -vcodec hevc_videotoolbox -allow_sw 1 -q:v 75 -alpha_quality 0.75 -tag:v hvc1 my.mp4



It's unclear how to do it in a Linux-based docker image without special hw. In these cases, libx265 is used quite often. Latest version 4.0.0 has support for transparency but it's not integrated with FFmpeg for now.


Any hw independent solution to create transparent mp4 will solve this issue. It can be something with ffmpeg, libx265, some converter of webm to mp4, or anything else.


I tried to use libx265 4.0.0 as an external tool :


ffmpeg -framerate 30 -i 'frame-%d.png' -pix_fmt yava420p my.yuv
x265 --alpha -o my.hevc --fps 30 --input-res 150x360 --input my.yuv
ffmpeg -i my.hevc -c:v copy -pix_fmt yuva420p -tag:v hvc1 my.mp4



Last command produces warnings and creates file with yuv420p in metadata. Looks like it doesn't support alpha in this way.


Yuv file is correct as webm can be created from it :


ffpmeg -f rawvideo -vcodec rawvideo -r 150x360 -r 30 -pix_fmt yuva420p -i my.yuv -b:v 0 my2.webm



So, it's unclear how to combine x265 and ffmpeg clis to produce mp4 (if possible). I expect that x265 output can be encapsulated into mp4 somehow, I just don't know how.