Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (72)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (11956)

  • using ffmpeg to display video on iPhone

    28 août 2013, par user1968711

    anyone can help me on this ?

    I have this API

    ret = avRecvFrameData(avIndex, buf, VIDEO_BUF_SIZE, (char *)&frameInfo, sizeof(FRAMEINFO_t), &frmNo);

    the buffer will fill with the content from the video thread the codec is H264 frameInfo contains the related information. If I want to display on iPhone, how to do it with ffmpeg ?

    much appreciated with your help .

  • Soft subtitles on iPhone

    12 novembre 2012, par forthrin

    I know this question (or similar ones) has been asked all over the Web, but I still can't find a straight answer :

    1. Is it possible to mux soft subtitles into an mp4 video file (quickly, without re-encoding the video stream) that iPhone will actually display on the screen ? I have tried ffmpeg, MP4Box, Subler, Submerge and mp4v2 and none of them were successful in producing mp4 file that would display subtitles on iPhone (though some of them had subtitles when playing the video in VLC or iTunes).

    2. If iPhone does not support soft subtitles in mp4 files, then is there any command line utility (like the ones mentioned in question 1) that will render hard subtitles onto the video stream ? (I guess then this process will take hours since the video will have to be re-encoded)

    3. Finally, if there is no command line utility that can do hard subtitles, what options are there for GUI-based utilities ? Is Handbrake the best option ?

    If possible, please supply a command line example.

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