Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (30)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (3041)

  • Can MPMoviePlayerController play m3u8 file

    26 novembre 2013, par Nitesh

    I am trying to play a m3u8 file using MPMovieplayercontroller
    i pass the url to the MPMovieplayercontroller
    But it will not play. Is it possible ?

    I am converting flv,avi video file formats into m3u8 files using ffmpeg for live http streaming on my server.

    The m3u8 url works when i pass it to VLC as a network stream on my mac.
    I know this has been asked a number of times but i have not got any satisfactory answers.

    Regards
    Nitesh

  • ffmpeg overlay video with audio

    2 août 2017, par ravindu1024

    I have two video files : input.mp4 (55seconds) and overlay.mp4 (10seconds). I need to overlay the overlay.mp4 on input.mp4 between 00:00:5 and 00:00:15 with both audio streams audible.
    I am using this command and everything seems to work ok but its causing a buffer overflow and causes the overlaid video to freeze and flicker. What am I doing wrong here ?

    ffmpeg -i input.mp4 -i overlay.mp4 -strict -2 -filter_complex
    "[0:v]setpts=PTS-STARTPTS[v0];
    [1:v]setpts=PTS-STARTPTS+5/TB[v1];
    [v0][v1]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2:eof_action=pass[outv];
    [1:a]adelay=5000[a1];
    [0:a][a1] amix [outa]"
    -map [outv] -map [outa] out.mp4

    Log :

    Output #0, mp4, to 'out.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2avc1mp41
       encoder         : Lavf56.40.101
       Stream #0:0: Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=-1--1, 25 fps, 12800 tbn, 25 tbc (default)
       Metadata:
         encoder         : Lavc56.60.100 libx264
       Stream #0:1: Audio: aac ([64][0][0][0] / 0x0040), 48000 Hz, stereo, fltp, 128 kb/s (default)
       Metadata:
         encoder         : Lavc56.60.100 aac
    Stream mapping:
     Stream #0:0 (h264) -> setpts
     Stream #0:1 (aac) -> amix:input0
     Stream #1:0 (h264) -> setpts
     Stream #1:1 (aac) -> adelay
     overlay -> Stream #0:0 (libx264)
     amix -> Stream #0:1 (aac)
    Press [q] to stop, [?] for help
    [Parsed_overlay_2 @ 0x169afe0] [framesync @ 0x169b128] Buffer queue overflow, dropping.
       Last message repeated 1 times
    [Parsed_overlay_2 @ 0x169afe0] [framesync @ 0x169b128] Buffer queue overflow, dropping.
       Last message repeated 13 times
    [Parsed_overlay_2 @ 0x169afe0] [framesync @ 0x169b128] Buffer queue overflow, dropping
  • rtp streaming using av_interleaved_write_frame or av_write_frame

    4 avril 2013, par sinan
    I am using ffmpeg windows libraries to rtsp/rtp demux and muxing. But I have problem about processing time of av_interleaved_write_frame or av_write_frame, for example for h264 encoded 1920x1080 pictures it takes 10-20 ms for p frames and 70-100 ms for I frame. I am using VLC for receiver and network bandwith is 100Mb, operating system is 32 bit windows7. If I choose smaller size picture processing time is decreases but it still over for my expectation.

    Is it normal these processing times.

    thanks,