Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (94)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

Sur d’autres sites (9236)

  • FFMPEG and HTTPS

    14 juin 2012, par Joel

    ffmpeg lists http as a protocol when I ask : ffmpeg -protocols

    Does this also mean support for a https url ? Do I need to encode this url somehow for the command line. I get "No such file or directory", but with http urls (at least some) it does work.

    A url (created for a Amazon S3 bucket) similar to this one does not seem to work :
    https://mycompany-video-test.s3.amazonaws.com/client/btr/video/xyz0011-x403-snap-n-go-ex/1/video/baby-laugh-ripping-paper.mp4?AWSAccessKeyId=AVIAZL9J6SIRPAA&Expires=1323709667&Signature=pTvS9F2do2t8%3D

    I suspect the format of the url is problematic, I've also tried enclosing in quotes... Yes, this URL does not currently work as it has expired, but even while its valid, its a problem.

    In short :
    1) Should https work ?
    2) Do I need to format the url somehow ?

  • ‘ffbuild/library.mak : No such file or directory’ on building ffmpeg for android

    20 octobre 2022, par JustinGong

    I use ffmpeg-5.1 and android-ndk-r22b in buntu 20.04.4 LTS system for building ffmpeg for android.

    


    Firstly, under ffmpeg-5.1 dir, I run ./configure --disable-x86asm.

    


    Second, I run sh build_android_clang.sh, it shows error :

    


    Makefile:113: ffbuild/library.mak: No such file or directory
make: *** No rule to make target 'ffbuild/library.mak'.  Stop.
Makefile:113: ffbuild/library.mak: No such file or directory
make: *** No rule to make target 'ffbuild/library.mak'.  Stop.
Makefile:113: ffbuild/library.mak: No such file or directory
make: *** No rule to make target 'ffbuild/library.mak'.  Stop.


    


    How to fix it ? Can anyone give some advises ?

    


    The content of build_android_clang.sh is as follows :

    


    #!/bin/bash
 
export NDK=/home/shicheng/gongzhenting/tools/android-tools/android-ndk-r22b
TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/linux-x86_64

ARCH=arm 
CPU=armv7-a 
OS=android
PLATFORM=armv7a-linux-androideabi
PREFIX=$(pwd)/android/$CPU 
OPTIMIZE_CFLAGS="-mfloat-abi=softfp -mfpu=vfp -marm -march=$CPU "

PREFIX=$(pwd)/android/arm
SYSROOT=$TOOLCHAIN/sysroot
CROSS_PREFIX=$TOOLCHAIN/bin/llvm-
ANDROID_CROSS_PREFIX=$TOOLCHAIN/bin/${PLATFORM}21-

./configure \
--prefix=$PREFIX \
--enable-shared \
--enable-gpl \
--enable-neon \
--enable-hwaccels \
--enable-postproc \
--enable-jni \
--enable-small \
--enable-mediacodec \
--enable-decoder=h264_mediacodec \
--enable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-ffplay \
--disable-avdevice \
--disable-debug \
--disable-static \
--disable-doc \
--disable-symver \
--cross-prefix=$CROSS_PREFIX \
--target-os=$OS \
--arch=$ARCH \
--cpu=$CPU \
--cc=${ANDROID_CROSS_PREFIX}clang \
--cxx=${ANDROID_CROSS_PREFIX}clang++ \
--enable-cross-compile \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fPIC $OPTIMIZE_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \

make clean
make
make install


    


  • How to record video across screens using FFmpeg on MacOS ?

    2 novembre 2018, par 郭德纲

    I’m developing a MacOS application for recording screens, and in some cases, it needs to do cross-screen recording.

    It records the screen by calling FFmpeg.

    Let’s say I have four screens, each 1920x1080, with a total resolution of 3840x2160.Is it possible to record the screen by passing a coordinate and size to FFmpeg ? Same effect as the picture below.
    enter image description here