Recherche avancée

Médias (91)

Autres articles (35)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à 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, par

    Unlike 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, par

    MediaSPIP 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
    avutil/hwcontext_cuda : add 4:2:2 pixel format support
    

    This commit adds support for 4:2:2 pixel formats, namely NV16 and
    P216 for NVIDIA GPUs.

    Signed-off-by : Diego de Souza <ddesouza@nvidia.com>
    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavutil/hwcontext_cuda.c
  • Configuration error when configuring the FFMPEG compilation with NVCC/CUDA [closed]

    3 février, par Lerenn

    I'm trying to compile the last FFMPEG version (49726a922fd2b358feb7753488d415180da5121c) on Fedora 41 with some libraries, including the CUDA libraries.

    &#xA;

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

    &#xA;

      nvcc -gencode arch=compute_60,code=sm_60 -O2 -std=c&#x2B;&#x2B;11 -m64 -ptx -c -o /tmp/ffconf.q0uMcStN/test.o /tmp/ffconf.q0uMcStN/test.cu&#xA;  nvcc warning : Support for offline compilation for architectures prior to &#x27;<compute></compute>sm/lto>_75&#x27; will be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).&#xA;  /usr/include/c&#x2B;&#x2B;/14/type_traits(1610): error: "__is_nothrow_new_constructible" is not a function or static data member&#xA;        constexpr bool __is_nothrow_new_constructible&#xA;                    ^&#xA;&#xA;  /usr/include/c&#x2B;&#x2B;/14/type_traits(1610): error: "constexpr" is not valid here&#xA;        constexpr bool __is_nothrow_new_constructible&#xA;        ^&#xA;&#xA;  2 errors detected in the compilation of "/tmp/ffconf.q0uMcStN/test.cu".&#xA;  ERROR: failed checking for nvcc.&#xA;

    &#xA;

    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.

    &#xA;

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

    &#xA;

    Here is the configure command :

    &#xA;

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

    &#xA;

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

    &#xA;

  • Decoding HEVC with Alpha Channel via NVDEC : Monochrome (4:0:0) Workarounds ? [closed]

    3 mars, par Holy_diver

    I’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 ?

    &#xA;

    Problem Details :

    &#xA;

    HEVC Profile: Stream uses HEVC_Rext (Range Extensions) &#xA;with a monochrome alpha layer (4:0:0 chroma subsampling).&#xA;&#xA;NVDEC Limitations: The SDK documentation states support &#xA;for 4:0:0 (8-bit) only for specific codecs like JPEG, not HEVC.&#xA;Attempting to decode returns &#xA;cudaError_InvalidValue or NVCUDACB_STATUS_INVALID_PARAM.&#xA;&#xA;Alpha Storage: The alpha is either a separate stream &#xA;or a dual-layer HEVC bitstream (e.g., DUAL_LAYER_DEPTH_SEPARATE).&#xA;

    &#xA;