Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (46)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (7648)

  • how to configure ffmpeg to transplant to iphone sdk 5.1 simulator and play h264 ?

    19 décembre 2012, par user1204703

    I use lastest "ffmpeg-1.0.1" and "ffmpeg-iphone-build",to transplant fffmpeg to iphone sdk 5.1 simulator.

    and use the build-i386 script in the "ffmpeg-iphone-build" project . also I add "—enable-decoder=h264" to the "CONFIGURE_OPTIONS".

    just this :

    CONFIGURE_OPTIONS="--enable-gpl --enable-postproc --enable-swscale --enable-avfilter --disable-asm --enable-cross-compile --enable-decoder=h264"

    then execute "./build-i386".
    and I also execute below batch :

    #!/bin/tcsh -f

    mkdir universal

    mkdir lib


    mkdir i386


    mv ffmpeg-i386/libavcodec/libavcodec.a i386/

    mv ffmpeg-i386/libavdevice/libavdevice.a i386/

    mv ffmpeg-i386/libavformat/libavformat.a i386/

    mv ffmpeg-i386/libavutil/libavutil.a i386/

    mv ffmpeg-i386/libswscale/libswscale.a i386/



    rm universal/*.a

    lipo -create -arch i386 i386/libavcodec.a -output universal/libavcodec.a

    lipo -create -arch i386 i386/libavdevice.a -output universal/libavdevice.a

    lipo -create -arch i386 i386/libavformat.a -output universal/libavformat.a

    lipo -create -arch i386 i386/libavutil.a -output universal/libavutil.a

    lipo -create -arch i386 i386/libswscale.a -output universal/libswscale.a

    rm lib/*.a

    cp universal/*.a lib/

    then I use the "iFreameExtractor" demo, modify the video file to "test.h264".
    code like :

    - (void)applicationDidFinishLaunching:(UIApplication *)application {    
       self.video = [[VideoFrameExtractor alloc] initWithVideo:[Utilities bundlePath:@"test.h264"]];
    }

    then run with IPhone 5.1 Simulator.
    but, fail with error :

    [h264 @ 0x91f1800] max_analyze_duration 5000000 reached at 5019130
    [h264 @ 0x91f1800] Estimating duration from bitrate, this may be inaccurate
    [swscaler @ 0x9203600] No accelerated colorspace conversion found from yuv420p to rgb24.
    2012-12-19 20:19:54.419 iFrameExtractor[52708:f803] video duration: -9223372036854.775391

    I think that the reason why it can not play h264 file that when I transplant the fffmpeg to the iphone simulator, and maybe do something wrong with the configure options.
    but I do not know how to fix it.

    Can you show the correct configure or other advices ?

    Thanks for your reply ??
    I am going to crash.

  • FFMPEG : MP4 videos are not playing properly in iPhone, iPod, iPad

    26 janvier 2020, par Shakti Singh

    I am converting videos from m4v, flv to MP4 for iPhone, iPod, iPad.

    I am using the below command to convert these videos

    ffmpeg -y -i video_1336500693.m4v -vcodec libx264 -vpre slow -vpre
    ipod640 -b 250k -bt 50k -acodec libfaac -ab 56k -ac 2 -s 480x320
    video_1336500693.mp4

    The video part of this mp4 file is working fine but the audio is not working properly. I am using HTML5 for this.

    The audio works for first 8-10 seconds but after that audio does not work and the strange thing is if I jump to forward or backward the audio works.

    Can anyone suggest what’s going wrong ?

  • FFMPEG : MP4 videos are not palying properly in iPhone, iPod, iPad

    25 mai 2012, par Shakti Singh

    I am converting videos from m4v, flv to MP4 for iPhone, iPod, iPad.

    I am using the below command to convert these videos

    ffmpeg -y -i video_1336500693.m4v -vcodec libx264 -vpre slow -vpre
    ipod640 -b 250k -bt 50k -acodec libfaac -ab 56k -ac 2 -s 480x320
    video_1336500693.mp4

    The video part of this mp4 file is working fine but the audio is not working properly. I am using HTML5 for this.

    The audio works for first 8-10 seconds but after that audio does not work and the strange thing is if I jump to forward or backward the audio works.

    Can anyone suggest what's going wrong ?

    Thanks