Recherche avancée

Médias (91)

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8128)

  • avformat/argo_asf : don't check file version

    10 août 2020, par Zane van Iperen
    avformat/argo_asf : don't check file version
    

    It has no bearing on structure. Determined by looking at the ASF
    files from several Argonaut games :
    - FX Fighter,
    - Croc,
    - Croc 2,
    - The Emperor's New Groove, and
    - Disney's Aladdin in Nasira's Revenge

    The only versions that appear are 1.1, 1.2, and 2.1, and their
    structure is identical.

    Reviewed-by : Alexander Strasser <eclipse7@gmx.net>
    Signed-off-by : Zane van Iperen <zane@zanevaniperen.com>

    • [DH] libavformat/argo_asf.c
  • how to setup rtmp wtih ffmpeg and aparat.com ?

    29 juillet 2020, par Demon Seeker

    i am completely new to rtmp and nginx and ubuntu&#xA;i just want to use a vps to restream my stream to multiple site like twitch, youtube etc...&#xA;it worked fine for me but recently my main streaming website aparat.com change his system and they don't take push command in /usr/local/nginx/conf/nginx.conf&#xA;i used this :

    &#xA;

    application live {&#xA;live on;&#xA;record off;&#xA;push rtmp://live.cdn.asset.aparat.com:443/event/<stream key="key">;&#xA;}&#xA;</stream>

    &#xA;

    and it work fine with twitch or youtube or mixer but it won't work with aparat.com

    &#xA;

    don't know why they give me this instead and tell me to use it :

    &#xA;

    application live {&#xA;live on;&#xA;record off;&#xA;hls off;&#xA;dash off;&#xA;wait_key on;&#xA;exec_publish ffmpeg -i rtmp://127.0.0.1/live/name -async 1 -vsync 1 -c copy -f flv "rtmp://rtmp.cdn.asset.aparat.com:443/event/<stream key="key">";&#xA;}&#xA;</stream>

    &#xA;

    when i start streaming i get no stream on site.&#xA;should i change anything beside on the line i highligh ?&#xA;should i install anything on my ubuntu 18.04.4 ?

    &#xA;

    please just consider i have no idea about anything there and i just cope paste codes...

    &#xA;

    i install ffmpeg and stunnel already and config them&#xA;i also try this :

    &#xA;

    exec_publish ffmpeg -i rtmp://127.0.0.1/live/name -async 1 -vsync 1 -c copy -f flv "rtmp://live.cdn.asset.aparat.com:443/event/<stream key="key">";&#xA;</stream>

    &#xA;

    exec_publish ffmpeg -i rtmp://127.0.0.1:19350/live/name -async 1 -vsync 1 -c copy -f flv "rtmp://live.cdn.asset.aparat.com:443/event/<stream key="key">";&#xA;</stream>

    &#xA;

    exec_publish ffmpeg -i rtmp://127.0.0.1:19350/live/name -async 1 -vsync 1 -c copy -f flv "rtmp://rtmp.cdn.asset.aparat.com:443/event/<stream key="key">";&#xA;</stream>

    &#xA;

    an i should say everything is ok with twitch and youtube&#xA;also i use OBS to stream games and everything is fine when i stream directly to aparat.com and using&#xA;rtmp ://rtmp.cdn.asset.aparat.com:443/event

    &#xA;

  • Im failing to build .so file for android from FFMPEG

    15 juillet 2020, par yejafot

    I tried many times with different versions of ffmpeg but failed eventually. I dont know how they wrote .sh file to configure different tools. Here are some .sh files i tried and it all failed. Either it shows only android/share folder instead of

    &#xA;

      &#xA;
    • android/include

      &#xA;

    • &#xA;

    • android/lib

      &#xA;

    • &#xA;

    • android/share

      &#xA;

    • &#xA;

    &#xA;

    OR

    &#xA;

    i end up in error like no file or folder exist,etc

    &#xA;

    I will share build_arm64-v8a different version of files below

    &#xA;

    VERSION 1

    &#xA;

    #!/bin/bash&#xA;export NDK=/media/sf_sharing/android-ndk&#xA;export HOST_TAG=linux-x86_64 # adjust to your building host&#xA;export TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/$HOST_TAG&#xA;&#xA;export CC=$TOOLCHAIN/bin/aarch64-linux-android21-clang&#xA;export CXX=$TOOLCHAIN/bin/aarch64-linux-android21-clang&#x2B;&#x2B;&#xA;&#xA;function build_arm64-v8a&#xA;{&#xA;  ./configure \&#xA;  --prefix=./android/arm64-v8a \&#xA;  --enable-static \&#xA;  --enable-pic \&#xA;  --disable-asm \&#xA;  --disable-opencl \&#xA;  --disable-cli \&#xA;  --host=aarch64-linux \&#xA;  --cross-prefix=$TOOLCHAIN/bin/aarch64-linux-android- \&#xA;  --sysroot=$TOOLCHAIN/sysroot \&#xA;&#xA;  make clean&#xA;  make&#xA;  make install&#xA;}&#xA;&#xA;build_arm64-v8a&#xA;echo build_arm64-v8a finished&#xA;

    &#xA;

    VERSION 2

    &#xA;

    #!/bin/bash&#xA;&#xA;TOOLCHAIN=/media/sf_sharing/my-android-toolchain64&#xA;CROSS_PREFIX=$TOOLCHAIN/bin/aarch64-linux-android-&#xA;rm -f $(pwd)/compat/strtod.o&#xA;function build_one&#xA;{&#xA;./configure --prefix=$PREFIX --enable-shared --disable-static --enable-protocol=file --enable-pic --enable-small --disable-programs --disable-doc --disable-symver --target-os=android --enable-cross-compile --cross-prefix=$CROSS_PREFIX --extra-cflags="-Os -fpic $ADDI_CFLAGS" --extra-ldflags="$ADDI_LDFLAGS" --sysroot=$TOOLCHAIN/sysroot $ADDITIONAL_CONFIG_FLAG&#xA;make clean&#xA;make -j2&#xA;make install&#xA;}&#xA;&#xA;CPU=arm64-v8a&#xA;mkdir -p $(pwd)/android/$CPU&#xA;PREFIX=$(pwd)/android/$CPU&#xA;ADDI_CFLAGS="-march=armv8-a"&#xA;ADDI_LDFLAGS="-L$TOOLCHAIN/sysroot/usr/lib"&#xA;ADDITIONAL_CONFIG_FLAG="--arch=aarch64 --enable-yasm"&#xA;build_one&#xA;

    &#xA;

    VERSION 3

    &#xA;

    #!/bin/bash&#xA;export NDK=/media/sf_sharing/android-ndk&#xA;export HOST_TAG=linux-x86_64 # adjust to your building host&#xA;export TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/$HOST_TAG&#xA;&#xA;export CC=$TOOLCHAIN/bin/aarch64-linux-android21-clang&#xA;export CXX=$TOOLCHAIN/bin/aarch64-linux-android21-clang&#x2B;&#x2B;&#xA;&#xA;function build_arm64-v8a&#xA;{&#xA;  ./configure \&#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 -lm" \&#xA;  --bindir="$HOME/bin" \&#xA;  --enable-gpl \&#xA;  --enable-gnutls \&#xA;  --enable-libaom \&#xA;  --enable-libass \&#xA;  --enable-libfdk-aac \&#xA;  --enable-libfreetype \&#xA;  --enable-libmp3lame \&#xA;  --enable-libopus \&#xA;  --enable-libvorbis \&#xA;  --enable-libvpx \&#xA;  --enable-libx264 \&#xA;  --enable-libx265 \&#xA;  --enable-nonfree \&#xA;&#xA;  make clean&#xA;  make&#xA;  make install&#xA;}&#xA;&#xA;build_arm64-v8a&#xA;echo build_arm64-v8a finished&#xA;

    &#xA;

    I'm using

    &#xA;

      &#xA;
    • ffmpeg-snapshot.tar.bz2

      &#xA;

    • &#xA;

    • android-ndk-r21d-linux-x86_64

      &#xA;

    • &#xA;

    &#xA;

    the only thing i know in 'ndk 21` is we need to use default toolchain (android documentation says).

    &#xA;

    How to create .sh file to build .so file to use in android ?

    &#xA;