
Recherche avancée
Autres articles (104)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (8939)
-
tests/fate/pixfmt : fix definition of 16bit tests
18 mai, par James Almer -
Why does ffmpeg not fully document all VAAPI filter graph operations and are there more than what I've listed here
13 juin 2020, par John AllardI've compiled
ffmpeg
from snapshot withvaapi
enabled.


$ ffmpeg -hwaccels
Hardware acceleration methods:
vaapi




I was curious about the available filter graph operations that I could do using my GPU, and found this page of documentation



https://ffmpeg.org/ffmpeg-filters.html#toc-VAAPI-Video-Filters



This page shows a single filter,
tonemap_vaapi
. I thought it was odd that there would only be a single filter and that it would betonemap
instead of something like scaling..


So I ran this command



$ ffmpeg -filters | grep vaapi
 ... deinterlace_vaapi V->V (null)
 ... denoise_vaapi V->V (null)
 ... procamp_vaapi V->V (null)
 ... scale_vaapi V->V (null)
 ... sharpness_vaapi V->V (null)




And it shows more filters that I don't find documented anywhere. Is there a reason why these aren't documented and where would I find out how use them ? Furhter, I notice that
tonemap_vaapi
is not one of those available filters..


While we're on the subject, I was really hoping for some way to transpose a video using hardware acceleration. I do not see a
transpose_vaapi
filter but I did notice this thread https://patchwork.ffmpeg.org/project/ffmpeg/patch/20181225061644.6384-1-zachary.zhou@intel.com/, was this feature ever added to ffmpeg or why was it not ? Is there any way to perform transposition with OpenCL ? I don't see anything mentioning transposing under the OpenCL filters here https://ffmpeg.org/ffmpeg-filters.html#OpenCL-Video-Filters


Thanks



EDIT -



I found the file
ffmpeg/libavfilter/allfilters.c
that lists many filters that are not documented.


https://github.com/FFmpeg/FFmpeg/blob/master/libavfilter/allfilters.c



This does how a
transpose_vaapi


-
avformat/rtsp : move SDP_MAX_SIZE macro definition to header file
11 novembre 2020, par Limin Wangavformat/rtsp : move SDP_MAX_SIZE macro definition to header file
move comments for the size of SDP_MAX_SIZE here :
Some SDP lines, particularly for Realmedia or ASF RTSP streams,
contain long SDP lines containing complete ASF Headers (several
kB) or arrays of MDPR (RM stream descriptor) headers plus
"rulebooks" describing their properties. Therefore, the SDP line
buffer is large.
The Vorbis FMTP line can be up to 16KB - see xiph_parse_sdp_line
in rtpdec_xiph.c.Signed-off-by : Limin Wang <lance.lmwang@gmail.com>