Recherche avancée

Médias (1)

Mot : - Tags -/karaoke

Autres articles (16)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

Sur d’autres sites (2156)

  • How to improve random access of a video frame with Python ?

    11 octobre 2024, par Paul Jurczak

    I'm using pims library (https://github.com/soft-matter/pims) to access frames from .MOV file with over 25K frames, 3840 × 2160, H.264 (High Profile), 60fps.

    


    import pims
from time import perf_counter

video = pims.Video('video/v1.MOV')
t0 = perf_counter()
img = video[1000]
t1 = perf_counter()
print(f'{(t1-t0):.3f}s  {img.shape}')


    


    Here are the timings on a fairly fast PC, after file open :

    


      

    • frame #100 : 2.97s
    • 


    • frame #1,000 : 28.39s
    • 


    • frame #10,000 : 280.19s
    • 


    


    AFAIK, this library uses ffmpeg, which can access frame #10,000 with ffmpeg -ss 00:02:46.66 -i v1.MOV -frames:v 1 f10k.png practically instantaneously. Is there a way to improve frame access with pims or some other method ?

    


  • rtsp : Include an User-Agent header field in all requests

    12 juillet 2013, par Martin Storsjö
    rtsp : Include an User-Agent header field in all requests
    

    Some rtsp servers like the IP Cam IcyBox IB-CAM2002 need it.

    Based on a patch by Carl Eugen Hoyos.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtsp.c
  • Hot to access video frames from external process ?

    14 août 2019, par gaamaa

    Windows 32 bit application memory limit is around 2gb approximately.
    I need to play 4 to 8 HD video files or live camera graphs. Which is not possible by a single 32 bit application.
    So I would like to play each graph in separate 32 bit application and access those video frames from my main application. In this case I could manage my need.

    Could some experts give me some clue to do this if c++ ?

    Is there any ready solution to achieve this ?

    gaamaa