Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (35)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6806)

  • 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 ?

  • Anomalie #4273 (Nouveau) : Cannot redeclare recuperer_page() sur spip_loader 3.0.5

    22 janvier 2019

    Le dernier spip_loader me lève une erreur lorsqu’on l’appelle non connecté :

    Fatal error : Cannot redeclare recuperer_page() (previously declared in /var/www/vhosts/revue-chimeres.fr/httpdocs/spip_loader.php:596) in /var/www/vhosts/revue-chimeres.fr/httpdocs/ecrire/inc/distant.php on line 684

    http://www.revue-chimeres.fr/spip_loader.php

  • Split videos into segments using ffmpeg

    21 janvier 2019, par RJFF

    I have 10000 videos and I want to split each video into five segments

    I know previously how to segment video using ffmpeg but I do not know how to use it with a large number of videos

    the names of videos are :
    1.avi,
    2.avi,
    3.avi,
    .......
    .....,
    10000.avi

    I want to use for loop with ffmpeg
    can you please help me ?!!!!