Recherche avancée

Médias (91)

Autres articles (6)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (1803)

  • Stream video and commands on same connection or split connections ?

    10 mai 2013, par bizzehdee

    Background

    I am in the middle of writing a client/server app that i will install on every machine within my office (roughly 30 - 35 machines). I currently have the client connecting to the server and it has an ability to send mouse movement, mouse clicks, key strokes and execute certain commands. The next step is to stream back a video output of the screen, i am using the GDI method from Fastest method of screen capturing to capture the entire screen and will be using the x264 encoder to compress the frames and transmit them back to the client which will then decode and display the stream.

    Question

    is it best (by means of reducing lag, ensuring all commands are delivered as fast as possible and that streaming is as live as possible) that i transmit back along the same connection that i established for the commands, or, should i establish a separate connection on the same port, or on a different port to stream back the video ?

    P.S.

    i am aware that VNC, RD and other things such as TeamViewer already exist and already do this sort of thing, but none of these support all the requirements needed for what we need within this system.

  • x11grab : Check the XQueryPointer return value

    26 septembre 2014, par Antonio Ospite
    x11grab : Check the XQueryPointer return value
    

    The paint_mouse_pointer() code uses XFixes to retrieve the cursor
    coordinates, but XFixes gives no information about which screen the
    pointer is on ; this results in always drawing the cursor on the
    captured screen even if the mouse pointer was on another screen.

    For example, when capturing from screen 1 (i.e. -f x11grab -i ":0.1")
    the cursor was being drawn in the captured image even when the mouse
    pointer was actually on screen 0, which is wrong and visually confusing.

    CC : libav-stable@libav.org
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavdevice/x11grab.c
  • Revision 1fbab853c8 : AVX2 To VP9 Block Error Optimization vp9_block_error_sse2 can only handle 16 by

    23 avril 2014, par levytamar82

    Changed Paths :
     Modify /vp9/common/vp9_rtcd_defs.pl


     Add /vp9/encoder/x86/vp9_error_intrin_avx2.c


     Modify /vp9/vp9cx.mk



    AVX2 To VP9 Block Error Optimization

    vp9_block_error_sse2 can only handle 16 bytes at a time but
    the function requires to handle a sequence of 32 bytes at a time
    so each 16 bytes is handled in a different register.
    With AVX2 optimization the 32 bytes can be handled in one register instead
    of two in the SSE2
    The vp9_block_error was optimized by 85%.
    The user level was optimized by 1.2%

    Change-Id : Ia8fffe60e61eff7432a5fbd538757894f6c319fd