Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (78)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11836)

  • Accessibilité de la barre de progression d’upload

    29 juillet 2015
  • iFrameExtractor fails to build library for armv7 using XCode 4.3.3 & iOS 5.1

    16 mars 2013, par Rajat Lala

    I have downloaded code to build with XCode 4.3.3 for iOS 5.1 from this link - https://github.com/lajos/iFrameExtractor
    I am successfully able to build the libraries for FFmpeg using build_universal script. But it always builds the libraries for X86_64 architecture. Checked with lipo -info command.

    Also tried the build script from the link - http://stexgroup.com/blog/ffmpeg-for-iphone-ios-xcode4.3-build-script. It also builds libraries for X86_64 architecture.

    I changed the scripts as per this post - problem compiling ffmpeg for iFrameExtractor

    But nothing is working for me.

    The build script for armv7 [iFrameExtractor] is as following

    ./configure \
    --disable-bzlib --disable-doc \
    --disable-ffmpeg --disable-ffplay \
    --disable-ffserver --disable-mmx \
    --cc=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc \
    --as='gas-preprocessor/gas-preprocessor.pl /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' \
    --enable-cross-compile --target-os=darwin \
    --arch=arm --cpu=cortex-a8 --enable-pic \
    --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk \
    --extra-ldflags="-arch armv7 -    L//Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk/usr/lib" \
    --extra-cflags="-arch armv7"

    Can anybody guide me what can be the issue, considering the same thing is working for everyone else ?

  • There is no sound with iFrameExtractor player

    22 octobre 2012, par why

    I has built ffmpeg and iFrameExtractor with ios5.1 successful, But when I play the video, There is no sound

    // Register all formats and codecs
    avcodec_register_all();
    av_register_all();
    avformat_network_init();


    if(avformat_open_input(&pFormatCtx, [@"http://somesite.com/test.mp4" cStringUsingEncoding:NSASCIIStringEncoding], NULL, NULL) != 0) {
       av_log(NULL, AV_LOG_ERROR, "Couldn't open file\n");
       goto initError;
    }

    The log is

    [swscaler @ 0xdd3000] No accelerated colorspace conversion found from
    yuv420p to rgb24. 2012-10-22 20:42:47.344 iFrameExtractor[356:707]
    video duration: 5102.840000 2012-10-22 20:42:47.412
    iFrameExtractor[356:707] video size: 720 x 576 2012-10-22 20:42:47.454
    iFrameExtractor[356:707] Application windows are expected to have a
    root view

    This is my configure file for ffmpeg 0.11.1 :

    #!/bin/tcsh -f

    rm -rf compiled/*

    ./configure \
    --cc=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc \
    --as='/usr/local/bin/gas-preprocessor.pl /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' \
    --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk \
    --target-os=darwin \
    --arch=arm \
    --cpu=cortex-a8 \
    --extra-cflags='-arch armv7' \
    --extra-ldflags='-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk' \
    --prefix=compiled/armv7 \
    --enable-cross-compile \
    --enable-nonfree \
    --disable-armv5te \
    --disable-swscale-alpha \
    --disable-doc \
    --disable-ffmpeg \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver \
    --enable-decoder=h264 \
    --enable-decoder=svq3 \
    --disable-asm \
    --disable-bzlib \
    --disable-gpl \
    --disable-shared \
    --enable-static \
    --disable-mmx \
    --disable-neon \
    --disable-decoders \
    --disable-muxers \
    --disable-demuxers \
    --disable-devices \
    --disable-parsers \
    --disable-encoders \
    --enable-protocols \
    --disable-filters \
    --disable-bsfs \
    --disable-postproc \
    --disable-debug