
Recherche avancée
Médias (1)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (94)
-
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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (5976)
-
Android ImageFormat.YUV_420_888 in FFmpeg
5 janvier 2020, par YondonatorIm using ffmpeg on Android. I have an image with the format
ImageFormat.YUV_420_888
and want to put the image into anAVFrame
. The Problem is that I dont know what formatImageFormat.YUV_420_888
is in ffmpeg. I tried withAV_PIX_FMT_YUV420P
but the result looks like this :
Wrong resultIt shoud look so :
Right resultHere is how I copy the data :
Image.Plane[] planes = image.getPlanes();
for(int i = 0; i < planes.length; i++)
{
BytePointer plane = new BytePointer(planes[i].getBuffer());
tmpAVFrame.data(i, plane);
}Edit :
With Pixel formatAV_PIX_FMT_YUV440P
only the colors are wrong :
Wrong Colors -
Converting MSB padding to LSB padding
23 novembre 2020, par Oier Lauzirika ZarrabeitiaI am using FFmpeg and Vulkan for a video related project. The problem is that FFmpeg uses MSB padding for the 9, 10 and 12bit formats, whilst Vulkan accepts LSB padded pixel formats.


I am using the following code to convert from one another, but the performance is terrible (1 second per frame), which cannot be accepted for video playback.


if(paddingBits > 0) {
 //As padding bits are set to 0, using CPU words for the shifting should not affect the result
 assert(dstBuffers[plane].size() % sizeof(size_t) == 0);
 for(size_t i = 0; i < dstBuffers[plane].size(); i += sizeof(size_t)) {
 reinterpret_cast(dstBuffers[plane][i]) <<= paddingBits;
 }
}



Note that this code will be executed 1-4 times per frame (once per
plane
) anddstBuffers[plane].size()
will be in the order of a couple of MegaBytes.dstBuffers[plane]
's data has an alignment greater thansize_t
's, so I am not performing unaligned read/writes. Using a smaller type such as uint16_t makes it perform worse.

My question is if there is any standard function (or inside the FFmpeg library) which implements the same behavior in a fancy way so that the performance is not a concern. If not, is there a more efficient way to implement it ?


Edit :
dstBuffers[plane]
storesstd::byte
-s and although is not of typestd::vector
, (it is a custom class) it is contiguous.

-
lavfi/hqdn3d : add slice thread optimization
2 octobre 2019, par Jun Zhaolavfi/hqdn3d : add slice thread optimization
Enabled one thread per plane, used the test command for 1080P video
(YUV420P format) as follow :ffmpeg -i 1080p.mp4 -an -vf hqdn3d -f null /dev/nul
This optimization improved the performance about 30% in 1080P YUV420P
case (from 110fps to 143fps), also pass the framemd5 check and FATE.Reviewed-by : Paul B Mahol <onemda@gmail.com>
Reviewed-by : Moritz Barsnick <barsnick@gmx.net>
Signed-off-by : Jun Zhao <barryjzhao@tencent.com>