Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (106)

  • 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

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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (11278)

  • FFMPEG video audio sync

    23 février 2023, par user1774074

    There are many questions regarding audio and video sync when processing videos with FFMPEG, but I couldn't find the answer for this one :

    


    I record rtsp stream with the following command :

    


    ffmpeg -rtsp_transport udp -i rtsp://streamAddress  -vcodec copy -acodec copy  -copyts -flags +bitexact -ss 00:00:02 -y output.avi


    


    I extract the audio with the following command :

    


    ffmpeg  -y -i output.avi -vn -flags +bitexact -f wav output.wav


    


    I search for event from output.wav and generate timestamps startTime and duration

    


    I cut and transcode the original video with the following command :

    


    ffmpeg  -y -i output.avi -cpu-used 16 -r 100 -threads 15 -b:v 2400k -vcodec libvpx -s 850x480 -an -ss startTime -t duration final.webm


    


    I can see this procedure loses the sync between video and audio but I can't find the reason. in Which part of commands the sync is lost and why ?

    


    My rtsp stream specs are :

    


    Profile Name : H.264

    


    Resolution 1280x720

    


    Output Frame Rate : 100

    


    GOP : 15

    


    Stream Mode : CBR

    


    Bitrate : 5 Mbps

    


  • Ffmpeg not compiling

    25 mai 2018, par Robin Betka

    I’m trying to compile ffmpeg 4.0 for Android (using Ubuntu 64 bit) but I can not get it to work.
    I was able to compile it for Linux itself fairly fast, but now struggling using the NDK. I’m unexperienced with this so I might have some major flaw somewhere. All paths and files exist. Github tutorials are extremely outdated and don’t work as well for me with different errors.

    Getting following error :

    In file included from ./libavformat/internal.h:24:0,
                from libavdevice/alldevices.c:23:
    /home/lit/Android/Sdk/ndk-bundle/toolchains/arm-linux-androideabi-
    4.9/prebuilt/linux-x86_64/lib/gcc/arm-linux-
    androideabi/4.9.x/include/stdint.h:9:26: fatal error: stdint.h: No such file
    or directory
    # include_next
                         ^
    compilation terminated.
    ffbuild/common.mak:60: recipe for target 'libavdevice/alldevices.o' failed
    make: *** [libavdevice/alldevices.o] Error 1

    My build script :

    SYSROOT=/home/lit/Android/Sdk/ndk-bundle/platforms/android-14/arch-arm/
    TOOLCHAIN=/home/lit/Android/Sdk/ndk-bundle/toolchains/arm-linux-androideabi-
    4.9/prebuilt/linux-x86_64

    cd ffmpeg/ffmpeg && \
    PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig"
    ./configure \
    --prefix="$HOME/ffmpeg_build" \
    --pkg-config-flags="--static" \
    --extra-cflags="-O3 -Wall -pipe -ffast-math -fstrict-aliasing -Werror=strict- aliasing -Wno-psabi -Wa,--noexecstack -DANDROID -DNDEBUG-march=armv5te -mtune=arm9tdmi -msoft-float"\
    --extra-ldflags="-L$HOME/ffmpeg_build/lib" \
    --bindir="$HOME/bin" \
    --arch=arm \
    --target-os=linux \
    --enable-cross-compile \
    --cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
    --cpu=armv5te \
    --sysroot=$SYSROOT \
    --enable-gpl \
    --enable-small \
    --enable-nonfree && \

    PATH="$HOME/bin:$PATH" make && \
    make -j2 && \
    make install && \
    hash -r

    Thank you for your help.

  • How to build ffmpeg for arm ? [on hold]

    11 décembre 2014, par fatsissy

    I have an arm cross compiler on my ubuntu machine and tried to build ffmeg libraries for arm but got the following error

    cd ffmpeg-2.5
    ./configure --host=arm-linux-gnueabihf
    Unknown option "--host=arm-linux-gnueabihf"

    I did read the ./configure —help file and there is an option "—arch=ARCH" but im not sure how to set this or if its the correct option.
    thanks !