
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (35)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
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 (4553)
-
avutil/hwcontext_cuda : add 4:2:2 pixel format support
8 janvier, par Diego de Souza -
Configuration error when configuring the FFMPEG compilation with NVCC/CUDA [closed]
3 février, par LerennI'm trying to compile the last FFMPEG version (
49726a922fd2b358feb7753488d415180da5121c
) on Fedora 41 with some libraries, including the CUDA libraries.

Everything works well when compiling without CUDA, but I have 2 cryptic errors when trying to run the
configure
command with the NVCC :

nvcc -gencode arch=compute_60,code=sm_60 -O2 -std=c++11 -m64 -ptx -c -o /tmp/ffconf.q0uMcStN/test.o /tmp/ffconf.q0uMcStN/test.cu
 nvcc warning : Support for offline compilation for architectures prior to '<compute></compute>sm/lto>_75' will be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
 /usr/include/c++/14/type_traits(1610): error: "__is_nothrow_new_constructible" is not a function or static data member
 constexpr bool __is_nothrow_new_constructible
 ^

 /usr/include/c++/14/type_traits(1610): error: "constexpr" is not valid here
 constexpr bool __is_nothrow_new_constructible
 ^

 2 errors detected in the compilation of "/tmp/ffconf.q0uMcStN/test.cu".
 ERROR: failed checking for nvcc.



I tried compiling it with default gcc (
gcc (GCC) 14.2.1 20250110 (Red Hat 14.2.1-7)
) but my NVCC version (Build cuda_12.8.r12.8/compiler.35404655_0
) seems to support only the GCC version 13.2 : https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html.

I have compiled it and ran the
configure
command again but it seems that I have the same errors.

Here is the
configure
command :

PKG_CONFIG_PATH="/usr/local/lib/pkgconfig" \
 ./configure \
 --cc=gcc-13.2 \
 --extra-libs=-lpthread --prefix="/usr/local" \
 --extra-cflags="-I/usr/local/include -I/usr/local/cuda/include" \
 --extra-ldflags="-L/usr/local/lib -L/usr/local/cuda/lib64" \
 --pkg-config-flags="--static" --enable-gpl --enable-nonfree \
 --enable-libfdk-aac --enable-libmp3lame --enable-libopus \
 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 \
 --enable-libvidstab --enable-libaom \
 --enable-cuda-nvcc --enable-libnpp \
 --disable-static --enable-shared



If you have any idea or lead on the matter, I would be really grateful.


-
Decoding HEVC with Alpha Channel via NVDEC : Monochrome (4:0:0) Workarounds ? [closed]
3 mars, par Holy_diverI’m working on decoding HEVC streams that include an alpha (transparency) channel using NVIDIA’s NVDEC. The alpha channel is encoded in monochrome (YUV 4:0:0), but NVDEC’s HEVC decoder appears to lack support for monochrome formats. How can I work around this limitation ?


Problem Details :


HEVC Profile: Stream uses HEVC_Rext (Range Extensions) 
with a monochrome alpha layer (4:0:0 chroma subsampling).

NVDEC Limitations: The SDK documentation states support 
for 4:0:0 (8-bit) only for specific codecs like JPEG, not HEVC.
Attempting to decode returns 
cudaError_InvalidValue or NVCUDACB_STATUS_INVALID_PARAM.

Alpha Storage: The alpha is either a separate stream 
or a dual-layer HEVC bitstream (e.g., DUAL_LAYER_DEPTH_SEPARATE).