Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (53)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7460)

  • how to install ffmpeg-2.8.22 in RHEL 9.5

    23 décembre 2024, par Shuang Fan

    I want to install ffmpeg version 2.8.22 in my RHEL 9.5,i installed gcc 11.5.0, nasm 2.15.05 and yasm 1.3.0.87.g121a,but after i make ;make install ,it shows

    


    make: *** No rule to make target 'x86util.asm', needed by 'libavutil/x86/cpuid.o'.  Stop.


    


    I downloaded source code from https://codeload.github.com/FFmpeg/FFmpeg/tar.gz/refs/tags/n2.8.22
save in ffmpeg-2.8.22.tar.gz
use tar -zxvf ffmpeg-2.8.22.tar.gz get FFmpeg-2.8.22 folder
change folder cd FFmpeg-2.8.22
configured with ./configure  --enable-shared --prefix=/root/prog/ThirdPart/ffmpeg-2.8.4/
Finally run make -j4 and make install
at the end of make install i get message from cmd :make: *** No rule to make target 'x86util.asm', needed by 'libavutil/x86/cpuid.o'.  Stop.

    


  • How to statically build ffmpeg with librtmp without root on centos 6.4 ?

    22 avril 2014, par Shuman

    i forked STVS’s batch build script here. only added lines for rtmp ? but why it’s not working , the error i got is

    *** Building FFmpeg ***
    ERROR: librtmp not found

    if i check the config.log file

    gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -I/usr/tmp/tmp/ffmpeg-static-test/target/include -I/usr/tmp/tmp/ffmpeg-static-test/target/include -static --static -std=c99 -fomit-frame-pointer -pthread -I/usr/tmp/tmp/ffmpeg-static-test/target/include/opus -I/usr/tmp/tmp/ffmpeg-static-test/target/include -Wl,-z,relro -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -c -o /var/tmp/ffconf.CIIzEs8o.o /var/tmp/ffconf.bBYD2amo.c
    gcc -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -lm -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -lm -static -Wl,--as-needed -I/usr/tmp/tmp/ffmpeg-static-test/target/include -Wl,-z,relro -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -o /var/tmp/ffconf.goVEXKQq /var/tmp/ffconf.CIIzEs8o.o -lrtmp -lssl -lcrypto -ldl -lz -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -lopus -lmp3lame -lfaac -lm -pthread -lbz2 -lz -lrt
    /usr/bin/ld: cannot find -lssl
    collect2: ld returned 1 exit status
    ERROR: librtmp not found

    i then checked my openssl install, it’s installed and

    > which openssl
    /usr/bin/openssl


    > ldd /usr/bin/openssl
    linux-vdso.so.1 =>  (0x00007fffd19ff000)
    libssl.so.10 => /usr/lib64/libssl.so.10 (0x0000003358000000)
    libgssapi_krb5.so.2 => /lib64/libgssapi_krb5.so.2 (0x0000003357c00000)
    libkrb5.so.3 => /lib64/libkrb5.so.3 (0x0000003356c00000)
    libcom_err.so.2 => /lib64/libcom_err.so.2 (0x0000003355800000)
    libk5crypto.so.3 => /lib64/libk5crypto.so.3 (0x0000003357400000)
    libcrypto.so.10 => /usr/lib64/libcrypto.so.10 (0x0000003355c00000)
    libdl.so.2 => /lib64/libdl.so.2 (0x000000334e800000)
    libz.so.1 => /lib64/libz.so.1 (0x000000334f000000)
    libc.so.6 => /lib64/libc.so.6 (0x000000334e000000)
    libkrb5support.so.0 => /lib64/libkrb5support.so.0 (0x0000003356800000)
    libkeyutils.so.1 => /lib64/libkeyutils.so.1 (0x0000003357000000)
    libresolv.so.2 => /lib64/libresolv.so.2 (0x000000334fc00000)
    libpthread.so.0 => /lib64/libpthread.so.0 (0x000000334ec00000)
    /lib64/ld-linux-x86-64.so.2 (0x000000334dc00000)
    libselinux.so.1 => /lib64/libselinux.so.1 (0x0000003350000000)

    which means i have libssl.so already. i tried adding -L/usr/lib64 to the configure script, but still it’s not working.

    previously in the build script

    CFLAGS="-I$TARGET_DIR/include" LDFLAGS="-L$TARGET_DIR/lib -lm" ./configure --prefix=${OUTPUT_DIR:-$TARGET_DIR} --extra-cflags="-I$TARGET_DIR/include" --extra-ldflags="-L$TARGET_DIR/lib -lm" --extra-version=static --disable-debug --disable-shared --enable-static --extra-cflags=--static --disable-ffplay --disable-ffserver --disable-doc --enable-gpl --enable-pthreads --enable-postproc --enable-gray --enable-runtime-cpudetect --enable-libfaac --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-bzlib --enable-zlib --enable-nonfree --enable-version3 --enable-libvpx --disable-devices --enable-librtmp

    i tried

    CFLAGS="-I$TARGET_DIR/include" LDFLAGS="-L$TARGET_DIR/lib -L/usr/lib64 -lm" ./configure --prefix=${OUTPUT_DIR:-$TARGET_DIR} --extra-cflags="-I$TARGET_DIR/include" --extra-ldflags="-L$TARGET_DIR/lib -L/usr/lib64 -lm" --extra-version=static --disable-debug --disable-shared --enable-static --extra-cflags=--static --disable-ffplay --disable-ffserver --disable-doc --enable-gpl --enable-pthreads --enable-postproc --enable-gray --enable-runtime-cpudetect --enable-libfaac --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-bzlib --enable-zlib --enable-nonfree --enable-version3 --enable-libvpx --disable-devices --enable-librtmp

    same error, what am i missing ?

  • Cut .mkv Video using ffmpeg without changing original bitrate

    23 janvier 2021, par benito_h

    I accidently said an unappropriate swear word during an educational video (good start I know). So I would like to remove this section from the .mkv video. However I would like the video and audio bitrate and quality unchanged.

    


    First, I tried cutting the video slightly after the relevant time stamp without reencoding it, using for example

    


    ffmpeg -i input.mkv -ss 00:01:09.200 -c copy -t 4:11 output.mkv


    


    but this way the first couple of seconds seem to get lost.

    


    Is there a way to remove the relevant segment (01:08.800 to 01:09.200) while maintaining the same bitrate / quality for audio and video ? Since only formulas are shown, a slight out-of-sync wouldnt even matter.