Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (100)

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

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

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

Sur d’autres sites (6960)

  • ffmpeg - frames to video using reference timecodes

    20 août 2020, par Tuxa

    I have a video with variable framerate that I decode into single frames using -vsync passthrough to avoid duplicate/lost frames. After processing those frames with another application I want to encode them again into an mp4 video that has the exact same timestamps as the original video.

    


    My idea is to input the frames plus the original video and use the timecodes of the latter. Is this possible ?

    


    This is my current approach :

    


    ffmpeg -i input/%d.jpg -vsync 0 -i input.mov  \
    -filter_complex '[0]setpts=PTS[vid1];[vid1]pad=iw*2:ih[vid2];[vid2][1:v]overlay=W/2:0[vid3]' \
    -map [vid3] -map 1:a \
    -y result.mp4


    


    I do a concatenation of both videos side-by-side to see if they are in sync which they are not...

    


    setpts=PTS uses the timecodes of the frames so this can not work. However, is there a way of using PTS from the second video ? Something like [0]setpts=PTS{1:v:0} ?

    


  • ffmpeg : Streaming mpeg1 Video over HTTP Server

    23 juillet 2014, par user36685

    I ma trying to stream an mpg video over an http server using ffmepg. I initiate the ffserver and run the following command at the client :

    ffmpeg -i http://localhost:10212/Stream.mpg -y Sample.mpg

    I also tried the following but it did not also work :

    ffmpeg -i http://localhost:10212/Stream.mpg -b 2.6M -aspect "1280:720" -r 29 -g 29 -keyint_min 58 -ab 320000 -ar 48000 -ac 2 -f mpeg  "Sample.mpg" -vstats_file stats.txt

    But the Sample.mpg file is far less qualtiy and much smaller than the 480p.mpg file. I want the exact same 480p.mpg file with the same file size, bit rate, ratio, fps etc.

    My config file is as follow :

    <stream>

       File "/home/david/Documents/Video/Streaming/480p.mpg"
       format mpeg

       ACL allow 127.0.0.1
       ACL allow 192.168.1.0 192.168.1.255

    </stream>
  • avcodec/mpeg4videoenc : Check extradata malloc()

    19 mars 2021, par Michael Niedermayer
    avcodec/mpeg4videoenc : Check extradata malloc()
    

    Fixes : Null pointer dereference
    Fixes : any mpeg4 testcase which fails the malloc at that exact spot

    Found-by : Rafael Dutra <rafael.dutra@cispa.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpeg4videoenc.c