Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (12)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (3392)

  • How to stream video using C/C++

    19 janvier 2015, par Arif Ali Saiyed

    I want to stream video to a file/ or memory buffer using VC++ on windows.
    Can anyone suggest easy to integrate library ?(that has one H,one LIB and one DLL).

    I am exploring the libVLC right now and gonna explore FFMPEG also.
    dont want to spend time in building these complex software fully myself, would appreciate any help/pointer/ references.


    My ultimate goal is to stream a video and consume the stream on HTML5 viewer.
    I tried streaming using VLC media player and streamed to a OGG file, I used same OGG file in a HTML5-Video tag and it worked.

    Now I want to do the streaming part using libVLC instead of VLC media player.
    I want to stream the video file to File or memory stream.

    I have found this sample https://wiki.videolan.org/Stream_to_memory_(smem)_tutorial/

    BUt unsure of how to get started ?
    1) Where do i get the libVLC.dll, libVLC.lib, libVLC.h , Is there any sample visual studio that has everything setup and I can straight begin to write the code using libVLC etc.

    2) Since libVLC is said to depdend on 200+ other libraries/modules/plugins, what will I have include and distribute with my application ?
    http://www.enjoythearchitecture.com/vlc-architecture.html
    https://wiki.videolan.org/Contrib_Status/

    3) streaming format : above example seems to stream into PCM format, cant I get it stream in some format that has better codec and regonized by HTML5 ? For example when i tried using VLC media player , my options were as following
    :sout=#transcodevcodec=theo,vb=800,acodec=vorb,ab=128,channels=2,samplerate=44100:filedst=C :\Users\testUser\stream-output.ogg,no-overwrite :sout-keep

  • ffmpeg not creating video from images

    16 décembre 2014, par Knight Rider

    I have read this Create Video using ffmpeg

    Stack Question for the Same

    Wiki Page for the same

    Still I am not able to get it.
    I have written this shell command in PHP

    echo $make_movie = "$ffmpeg -framerate 1/5 -i $folder_name/img%03d.png -c:v libx264 -r 25 -pix_fmt yuv420p $folder_name/output.mp4";

    This gives output

    ffmpeg\bin\ffmpeg.exe -framerate 1/5 -i ankit/img%03d.png -c:v libx264 -r 25 -pix_fmt yuv420p ankit/output.mp4

    if(shell_exec($make_movie)){
       echo "<br />Movie Created..<br />";
    }
    else{
       echo "<br />Movie Creation Error..<br />";
    }

    The Output is Movie Creation Error that means the Shell Command is not executing ?

    Questions :

    1. What is wrong ?
    2. For future use, any debugging methods for this ?

    I ran the same command on cmd and it made the video..!!!

  • ffmpeg merge 2 videos missing audio

    30 janvier 2016, par Liao

    I followed the wiki

    $ffmpeg_bin -i part1_1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
    $ffmpeg_bin -i part1_2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
    $ffmpeg_bin -i "concat:intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc result.mp4

    the origin part1_1.mp4 has no audio, part1_2.mp4 does

    But the result.mp4 has no audio.

    When I change part1_1.mp4 to a video which has audio, then result.mp4 got audio

    Why ?