Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (102)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • Error when compiling FDK-AAC for iOS

    1er juillet 2014, par 谢小进

    I want to compile FDK-AAC for iOS, including i386, x86_64, armv7, armv7s, arm64. I use this shell script and run, only i386, x86_64, armv7, armv7s are built. Code like this :

    #!/bin/sh

    # OS X Mavericks, Xcode 5.1

    set -ex

    VERSION="0.1.3"
    CURRPATH=`pwd`
    SOURCE="fdk-aac-$VERSION"
    DSTDIR="libfdk-aac"
    SDKVERSION="7.1"
    ARCHS="x86_64 i386 armv7 armv7s"
    DEVELOPER="/Applications/Xcode.app/Contents/Developer"

    rm -rf $DSTDIR
    mkdir $DSTDIR

    tar jxf $SOURCE.tar.gz
    cd $SOURCE

    for ARCH in $ARCHS; do
       mkdir -p $CURRPATH/$DSTDIR/$ARCH

       if [ $ARCH == "i386" -o $ARCH == "x86_64" ]; then
           PLATFORM="iPhoneSimulator"
           HOST=
           if [ $ARCH = "i386" ]; then
               HOST="--host=i386-apple-darwin"
           fi
       else
           PLATFORM="iPhoneOS"
           HOST="--host=arm-apple-darwin"
       fi

       SDK="$DEVELOPER/Platforms/$PLATFORM.platform/Developer/SDKs/$PLATFORM$SDKVERSION.sdk"
       IOSMV="-miphoneos-version-min=7.0"
       export CC="$DEVELOPER/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang"
       export CFLAGS="$IOSMV -arch $ARCH"
       export LDFLAGS="$IOSMV -arch $ARCH -isysroot $SDK"
       export LIBS="-L$SDK/usr/lib"
       export CXXFLAGS="$IOSMV -arch $ARCH -I$SDK/usr/include"

       ./configure \
       $HOST \
       --with-sysroot="$SDK" \
       --prefix=$CURRPATH/$DSTDIR/$ARCH

       make && make install && make clean
    done

    cd ..
    mkdir -p $DSTDIR/lib

    lipo -create `find $DSTDIR -name libfdk-aac.a` -output $DSTDIR/lib/libfdk-aac.a

    cp -rf $DSTDIR/$ARCH/include $DSTDIR

    for ARCH in $ARCHS; do
       rm -rf $DSTDIR/$ARCH
    done

    Can somebody tell me why arm64 is not built correct ? If needed, where can I change them ? Maybe it could be like -host= value. but I have used -host=arm-apple-darwin, and -host=arm64-apple-darwin, it’s not correct either.

  • implicit declaration of function 'lseek64' is invalid in C99

    29 mai 2015, par Jerikc XIONG

    I have got the following compile error while compiling the FFmpeg-Vitamio.

    My OS is Mac OS X 10.10.9

    NDK version : android-ndk-r10d

    Gcc version :

    $gcc --version
    Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
    Apple LLVM version 6.0 (clang-600.0.57) (based on LLVM 3.5svn)
    Target: x86_64-apple-darwin14.1.1
    Thread model: posix

    Error message :

    libavformat/fd.c:59:9: error: implicit declaration of function 'lseek64' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
       return lseek64(fd, pos, whence);
  • avformat/mov : Add support for reading and exporting horizontal field of view

    30 mai 2024, par Derek Buitenhuis
    avformat/mov : Add support for reading and exporting horizontal field of view
    

    These boxes are created by the Apple Vision Pro and the iPhone 15+ when
    capture for the Vision Pro is enabled.

    Based off of the swift API :
    * https://developer.apple.com/documentation/coremedia/kcmformatdescriptionextension_horizontalfieldofview

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c