Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (97)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (9675)

  • vaapi_h264 : Scale log2_max_pic_order_cnt_lsb with max_b_frames

    5 janvier 2017, par Mark Thompson
    vaapi_h264 : Scale log2_max_pic_order_cnt_lsb with max_b_frames
    

    Before this change, it was possible to overflow pic_order_cnt_lsb and
    generate a stream with invalid POC numbering. This makes sure that
    the field is large enough that a single IDR B* P sequence uses fewer
    than half the available POC lsb values.

    (cherry picked from commit 89725a8512721fffd190021ded2d3f5b42e20e2a)

    • [DH] libavcodec/vaapi_encode_h264.c
  • ffmpeg saving rtsp to mp4 file but video have a lot of green and gray block [closed]

    19 avril 2024, par UncleKing

    I use ffmpeg to save IPcam rtsp to mp4 , but the video have half green or gray , here is the paramter :
ffmpeg -i "rtsp ://192.168.0.37/live/1" -s 1920x1080 -filter:v "fps=fps=15,drawtext=text='test':fontcolor=red:fontsize=32:x=(w-text_w)/2:y=(h-text_h)/2" -crf 36 -preset ultrafast -vcodec libx264 -an -t 10 -f mp4 tmp.mp4

    


    and here is the strange videoenter image description here

    


    I need to know what's wrong ?
my ipcam setting is :
H264 , 2560*1440 , 20fps , fixed rate 4096Kbps , Iframe 2 seconds , HP

    


  • What is the most efficient way to grab a specific frame from a video file by index ?

    4 février 2021, par Handelo

    So for some context - I'm creating a real-time data visualization tool in c# that needs to display video synced to other data. The playback needs to be stopped, resumed, scrubbed through and skipped through as smoothly as possible, similar to how it's done in video editing software, as well as have other data overlaid on top of it. To that end I do need the ability to get each frame by its index in a bitmap format. The video files are mostly MP4 encoded in x264, though support for other codecs is preferable.

    


    So far I've tried using both EMGU.CV and the Accord FFMPEG wrapper, but both solutions seem really slow at grabbing single frames - EMGU.CV's VideoCapture.SetCaptureProperty takes anywhere from half a second to 3 seconds to do so, and FFMPEG's VideoFileReader.ReadVideoFrame can take upwards of 10 (!) seconds.

    


    So what would be the most efficient solution here ? Is there another library I should try ?