Recherche avancée

Médias (91)

Autres articles (102)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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) (...)

Sur d’autres sites (4968)

  • avcodec/cuviddec : fix AV1 decoding error

    24 juin 2022, par Zhao Zhili
    avcodec/cuviddec : fix AV1 decoding error
    

    cuvidParseVideoData only supports pure OBUs, it reports an unknown
    error with AV1CodecConfigurationRecord. Check whether extradata
    is AV1CodecConfigurationRecord and skip the first 4 bytes to fix
    the issue.

    The bug is revealed in ffmpeg cmd since 45e3b6a68 and ffd1316e.

    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/cuviddec.c
  • Build ffmpeg under Cygwin : Invalid relocation. Offset at address doesn't fit into 32 bits

    11 août 2022, par synner

    Trying to build ffmpeg-5.1 under Cygwin, "natively" i.e to be dependant under the cygwin DLL, not necessarily cross-compiling for pure Windows.

    &#xA;

    I built separately a lot of the dependant libs.&#xA;Some of the libs were provided by the cygwin repo naturally.

    &#xA;

    [ /usr/local/src/ffmpeg-5.1]λ ./configure --disable-shared --enable-static --extra-cflags="-I/usr/local/include" --extra-ldflags="-L/usr/local/lib" --enable-gpl --enable-nonfree --enable-openssl --enable-gcrypt --enable-libass --enable-libcaca --enable-libcelt --enable-libcdio --enable-libdav1d --enable-libfdk-aac --enable-libfontconfig --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-libopenjpeg --enable-libopus --enable-libsoxr --enable-libssh --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-libxml2 --enable-libzmq --enable-pic --disable-avdevice&#xA;&#xA;install prefix            /usr/local&#xA;source path               .&#xA;C compiler                gcc&#xA;C library                 newlib&#xA;ARCH                      x86 (generic)&#xA;big-endian                no&#xA;runtime cpu detection     yes&#xA;standalone assembly       yes&#xA;x86 assembler             nasm&#xA;MMX enabled               yes&#xA;MMXEXT enabled            yes&#xA;3DNow! enabled            yes&#xA;3DNow! extended enabled   yes&#xA;SSE enabled               yes&#xA;SSSE3 enabled             yes&#xA;AESNI enabled             yes&#xA;AVX enabled               yes&#xA;AVX2 enabled              yes&#xA;AVX-512 enabled           yes&#xA;AVX-512ICL enabled        yes&#xA;XOP enabled               yes&#xA;FMA3 enabled              yes&#xA;FMA4 enabled              yes&#xA;i686 features enabled     yes&#xA;CMOV is fast              yes&#xA;EBX available             yes&#xA;EBP available             yes&#xA;debug symbols             yes&#xA;strip symbols             yes&#xA;optimize for size         no&#xA;optimizations             yes&#xA;static                    yes&#xA;shared                    no&#xA;postprocessing support    yes&#xA;network support           yes&#xA;threading support         pthreads&#xA;safe bitstream reader     yes&#xA;texi2html enabled         no&#xA;perl enabled              yes&#xA;pod2man enabled           yes&#xA;makeinfo enabled          yes&#xA;makeinfo supports HTML    yes&#xA;xmllint enabled           yes&#xA;&#xA;...&#xA;

    &#xA;

    [ /usr/local/src/ffmpeg-5.1]λ ./ffmpeg -version&#xA;Cygwin runtime failure: /usr/local/src/ffmpeg-5.1/ffmpeg.exe: Invalid relocation.  Offset 0x7ffd7778b627 at address 0x100a92895 doesn&#x27;t fit into 32 bits&#xA;

    &#xA;

    Suggestions for build options / root cause ?

    &#xA;

  • x86/tx_float : implement inverse MDCT AVX2 assembly

    3 septembre 2022, par Lynne
    x86/tx_float : implement inverse MDCT AVX2 assembly
    

    This commit implements an iMDCT in pure assembly.

    This is capable of processing any mod-8 transforms, rather than just
    power of two, but since power of two is all we have assembly for
    currently, that's what's supported.
    It would really benefit if we could somehow use the C code to decide
    which function to jump into, but exposing function labels from assebly
    into C is anything but easy.
    The post-transform loop could probably be improved.

    This was somewhat annoying to write, as we must support arbitrary
    strides during runtime. There's a fast branch for stride == 4 bytes
    and a slower one which uses vgatherdps.

    Zen 3 benchmarks for stride == 4 for old (av_imdct_half) vs new (av_tx) :

    128pt :
    2811 decicycles in av_tx (imdct),16775916 runs, 1300 skips
    3082 decicycles in av_imdct_half,16776751 runs, 465 skips

    256pt :
    4920 decicycles in av_tx (imdct),16775820 runs, 1396 skips
    5378 decicycles in av_imdct_half,16776411 runs, 805 skips

    512pt :
    9668 decicycles in av_tx (imdct),16775774 runs, 1442 skips
    10626 decicycles in av_imdct_half,16775647 runs, 1569 skips

    1024pt :
    19812 decicycles in av_tx (imdct),16777144 runs, 72 skips
    23036 decicycles in av_imdct_half,16777167 runs, 49 skips

    • [DH] libavutil/tx.c
    • [DH] libavutil/tx_priv.h
    • [DH] libavutil/x86/tx_float.asm
    • [DH] libavutil/x86/tx_float_init.c