Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (36)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (4408)

  • Nodebots Day 2014 Sydney

    25 juillet 2014, par silvia

    Nodebots and WebRTC Day in Sydney, NICTA http://www.meetup.com/WebRTC-Sydney/events/173234022/

    Category : Array
    Uploaded by : Silvia Pfeiffer
    Hosted : youtube

    The post Nodebots Day 2014 Sydney first appeared on ginger’s thoughts.

  • x86/tx_float : remove vgatherdpd usage

    20 mai 2022, par Lynne
    x86/tx_float : remove vgatherdpd usage
    

    Its performance loss ranges from either being just as fast as individual loads
    (Skylake), a few percent slower (Alderlake), 8% slower (Zen 3), to completely
    disasterous (older/other CPUs).

    Sadly, gathers never panned out fast on x86, even with the benefit of time and
    implementation experience.

    This also saves a register, as there's no need to fill out an additional
    register mask.

    Zen 3 (16384-point transform) :
    Before : 1561050 decicycles in av_tx (fft), 131072 runs, 0 skips
    After : 1449621 decicycles in av_tx (fft), 131072 runs, 0 skips

    Alderlake :
    2% slower on big transforms (65536), to 1% (131072), to a few percent for smaller
    sizes.

    • [DH] libavutil/x86/tx_float.asm
    • [DH] libavutil/x86/tx_float_init.c
  • Restreaming raw data to ffserver gives rc buffer overflow error

    19 octobre 2017, par Nithish Reddy J

    My goal here is to fetch stream from live url to opencv python, process this stream and restream it to ffserver. Below is the command i use :

    python store.py | ffmpeg -f rawvideo -pixel_format yuv420p -video_size
    544x576 -framerate 25 -i - http://localhost:8090/feed1.ffm

    Below is my ffserver.conf file

    <feed>

    File /tmp/feed1.ffm
    FileMaxSize 3G
    ACL allow 127.0.0.1

    </feed>

    <stream>
    Format mpeg
    VideoBitRate 128
    VideoBufferSize 60000
    VideoFrameRate 25
    VideoSize 544x576
    VideoGopSize 12
    NoAudio
    VideoQMax 45
    ACL allow localhost
    ACL allow 192.168.0.0 192.168.255.255

    </stream>

    and when i run the command stated above it gives me the error

    [mpeg1video @ 0x1c6e6c0] rc buffer underflow

    and to test my feed when i hit the command

    ffplay http://localhost:8090/test1.mpg

    I can see the output feed being played but there is a green mask applied on the feed.Attaching Image :
    enter image description here