Recherche avancée

Médias (91)

Autres articles (82)

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

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (12879)

  • avutil/tx_template : Don't waste space for inexistent factors

    22 octobre 2022, par Andreas Rheinhardt
    avutil/tx_template : Don't waste space for inexistent factors
    

    It is possible to avoid the factors array for the power-of-two
    tables for which said array is unused by using a different
    structure for initialization for power-of-two tables than for
    non-power-of-two-tables. This saves 3*15*16B from .data.

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavutil/tx_template.c
  • compiling ffmpeg with libvpx, unable to find decoder

    9 janvier 2024, par mr.Nobody

    I am trying to compile ffmpeg with libvpx support on Windows with Visual Studio compiler.

    &#xA;

    I am using msys2 for building platform and running flowing commands for libvpx

    &#xA;

    cd libvpx&#xA;./configure --prefix="$HOME/ffmpeg_build" --target=x86_64-win64-vs16 --as=yasm&#xA;make&#xA;make install&#xA;

    &#xA;

    then adding path file and compiling ffmpeg

    &#xA;

    cd ffmpeg&#xA;PATH="$HOME/bin:$PATH" &#xA;PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" &#xA;./configure --toolchain=msvc --arch=x86_64 \&#xA;  --prefix="$HOME/ffmpeg_build" \&#xA;  --pkg-config-flags="--static" \&#xA;  --extra-cflags="-I$HOME/ffmpeg_build/include" \&#xA;  --extra-ldflags="-L$HOME/ffmpeg_build/lib" \&#xA;  --extra-libs=-lpthread \&#xA;  --extra-libs=-lm \&#xA;  --bindir="$HOME/bin" \&#xA;  --enable-libvpx &#xA;

    &#xA;

    When I run the command above, I get the errror :

    &#xA;

    libvpx enabled but no supported decoders found&#xA;

    &#xA;

    how can I solve this problem ?

    &#xA;

  • FFMPEG linking with VPX library

    20 août 2016, par Mohammad Abu Musa

    I want to compile a code I am writing to work with ffmpeg but I can not link this code. I added all the required libraries but still do not work

    g++ -L/home/user/ffmpeg_build/lib -o "vpx"  ./src/vpx.o   -lpthread -lavcodec -lavutil -lvpx
    /home/user/ffmpeg_build/lib/libavcodec.a(frame_thread_encoder.o): In function

    ff_frame_thread_encoder_init’ :
    /home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/frame_thread_encoder.c:213 : undefined reference to

    pthread_create'
    /home/user/ffmpeg_build/lib/libavcodec.a(frame_thread_encoder.o): In function

    ff_frame_thread_encoder_free’ :
    makefile:45 : recipe for target ’vpx’ failed
    /home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/frame_thread_encoder.c:238 : undefined reference to

    pthread_join'
    /home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/frame_thread_encoder.c:238: undefined reference to

    pthread_join’
    /home/user/ffmpeg_build/lib/libavcodec.a(pthread_frame.o) : In function

    ff_frame_thread_free':
    /home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/pthread_frame.c:564: undefined reference to

    pthread_join’
    /home/user/ffmpeg_build/lib/libavcodec.a(pthread_frame.o) : In function

    ff_frame_thread_init':
    /home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/pthread_frame.c:704: undefined reference to

    pthread_create’
    /home/user/ffmpeg_build/lib/libavcodec.a(pthread_slice.o) : In function

    ff_slice_thread_free':
    /home/user/ffmpeg_sources/ffmpeg-3.1.2/libavcodec/pthread_slice.c:116: undefined reference to

    pthread_join’`