Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (99)

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

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (10234)

  • avcodec/aacps : Fix runtime error : left shift of 1073741824 by 1 places cannot be...

    2 juin 2017, par Michael Niedermayer
    avcodec/aacps : Fix runtime error : left shift of 1073741824 by 1 places cannot be represented in type 'INTFLOAT' (aka 'int')
    

    Fixes : 2005/clusterfuzz-testcase-minimized-5744226438479872

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/aacps.c
  • how to make ffmpeg output frames at correct rate down to millisecond

    9 février 2017, par Pavel K.

    using ffmpeg, i am fetching frames from udp stream (hd264 at 25 fps) using following command :

    ffmpeg -loglevel debug -i udp ://231.20.20.146:2005 -fflags nobuffer -r 1 -preset ultrafast -vf scale=432:243 -f image2pipe -vcodec ppm pipe:1

    at the other end of the pipe i am running a very simple binary which outputs the time at which it receives a frame.

    however, even though i specify fps 1, frames enter the pipe with some delay, with 100-200ms delay.

    what causes this delay ? is it the decoding of the frames and encoding of ppm image ? and how can i force ffmpeg to send images at least at the correct distance between each other, so that each frame would arrive exactly 1000ms after previous frame ?

    ps. the first 6 frames are buffered and enter the pipe almost at once. here is an example of recorded ms values :

    5350
    5368
    5385
    5493
    5599
    5676
    5785
    6221
    7243
    8235
    9218
    10219
    11227
    12268
    13268
    14242
    15288
    16219
    17297
    18222
    19284
    20272

  • ffmpeg / mencoder converting a video with correct setting

    22 août 2016, par Rick T

    I have an avi video file that plays on my Onn-W7 player Link to avi video file that works and backup link to avi file that works. I’m trying to convert some other video files over so that they will also play on it. I’ve tried handbrake, ffmpeg and mencoder but the video fails to work most likely do to the fact I have some settings wrong in the conversion process but I don’t know which ones any ideas how to fix this

    Here’s the settings of the avi file that works below :

    General
    Complete name                            : /tmp/ONN.avi
    Format                                   : AVI
    Format/Info                              : Audio Video Interleave
    File size                                : 11.0 MiB
    Duration                                 : 3mn 1s
    Overall bit rate                         : 508 Kbps
    Writing application                      : MEncoder Sherpya-MinGW-20060312-4.1.0
    Writing library                          : MPlayer

    Video
    ID                                       : 0
    Format                                   : MPEG-4 Visual
    Format profile                           : Simple@L3
    Format settings, BVOP                    : No
    Format settings, QPel                    : No
    Format settings, GMC                     : No warppoints
    Format settings, Matrix                  : Default (H.263)
    Codec ID                                 : XVID
    Codec ID/Hint                            : XviD
    Duration                                 : 3mn 1s
    Bit rate                                 : 371 Kbps
    Width                                    : 160 pixels
    Height                                   : 128 pixels
    Display aspect ratio                     : 5:3
    Original display aspect ratio            : 5:4
    Frame rate                               : 15.000 fps
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Compression mode                         : Lossy
    Bits/(Pixel*Frame)                       : 1.207
    Stream size                              : 8.00 MiB (73%)
    Writing library                          : XviD 1.1.0 (UTC 2005-11-22)

    Audio
    ID                                       : 1
    Format                                   : MPEG Audio
    Format version                           : Version 1
    Format profile                           : Layer 2
    Codec ID                                 : 50
    Duration                                 : 3mn 1s
    Bit rate mode                            : Constant
    Bit rate                                 : 128 Kbps
    Channel(s)                               : 2 channels
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 2.77 MiB (25%)
    Alignment                                : Split accross interleaves
    Interleave, duration                     : 26 ms (0.39 video frame)
    Interleave, preload duration             : 522 ms

    The ffmpeg command I tried is :

    ffmpeg -i "video_to_convert.mp4" -c:v libxvid -vf scale=160x128,setsar=1 -b:v 800k -r 15 -c:a libtwolame -ac 2 -ar 44100 -b:a 128k -y video_converted.avi