Recherche avancée

Médias (91)

Autres articles (84)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4545)

  • avcodec/dvdsubdec : fix accessing dangling pointers

    8 janvier 2015, par wm4
    avcodec/dvdsubdec : fix accessing dangling pointers
    

    dvdsub_decode() can call append_to_cached_buf() 2 times, the second time
    with ctx->buf as argument. If the second append_to_cached_buf() reallocs
    ctx->buf, the argument will be a pointer to the previous, freed block.
    This can cause invalid reads at least with some fuzzed files - and
    possibly with valid files.

    Since packets can apparently not be larger than 64K (even if packets are
    combined), just use a fixed size buffer. It will be allocated as part of
    the DVDSubContext, and although some memory is "wasted", it’s relatively
    minimal by modern standards and should be acceptable.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dvdsubdec.c
  • Best approach to stream RTSP IP Cam feed to React app and node.js express server

    17 juillet 2024, par JuicyPhan

    I am trying to build a set-up whereby I stream multiple IP Cam RTSP Video feeds to multiple users.&#xA;It needs to have minimal latency.

    &#xA;

    Server Hardware : Static IP Synology NAS
    &#xA;Front-End : React
    &#xA;Back-End : Node.js Express
    &#xA;STUN/TURN server : Coturn
    &#xA;Video Feed : Multiple IP Camera's RTSP feeds
    &#xA;Video Encoder : ffmpeg(?)
    &#xA;Video Decoder : ?
    &#xA;Video Format : ?
    &#xA;Streaming Protocol : WebRTC

    &#xA;

    I have every individual component up however am struggling with the part whereby I encode the RTSP feed.

    &#xA;

    What video format do I encode it to and how do I use WebRTC to stream to viewers on the front-end ?

    &#xA;

  • In Python, why do 'writer' is considered to be as an unexpected keyword argument for save

    23 mars 2014, par Strömungsmechanik

    I would like to save an animation using the function save in Python. During compilation, I get the following message :

    anim.save(&#39;mymovie.mp4&#39;,writer="ffmpeg")
    TypeError: save() got an unexpected keyword argument &#39;writer&#39;

    Please note that I have installed successfully FFmpeg. Here is a minimal working environment :

    import numpy as np
    from matplotlib import pyplot as plt
    from matplotlib import animation
    from numpy import pi

    X,Y = np.meshgrid(np.arange(0,2*np.pi,.2),np.arange(0,2*np.pi,.2) )  
    U = np.cos(X)
    V = np.sin(Y)

    fig,ax = plt.subplots(1,1)
    Q = ax.quiver( X, Y, U, V, pivot=&#39;mid&#39;, color=&#39;r&#39;, units=&#39;inches&#39;)

    ax.set_xlim(0, 2*pi)
    ax.set_ylim(0, 2*pi)

    def update_quiver(num, Q, X, Y):
       U = np.cos(X + num*0.1)
       V = np.sin(Y + num*0.1)
       Q.set_UVC(U,V)
       return Q,

    anim = animation.FuncAnimation(fig, update_quiver, fargs=(Q, X, Y),
       interval=10, blit=False)

    anim.save(&#39;mymovie.mp4&#39;,writer="ffmpeg")