Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (62)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (4162)

  • avformat/tls_openssl : #if ff_openssl_init/deinit() away if possible

    17 mai 2024, par Andreas Rheinhardt
    avformat/tls_openssl : #if ff_openssl_init/deinit() away if possible
    

    These functions do nothing useful when used with a non-ancient
    version of openssl (namely 1.1.0 or above).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/network.c
    • [DH] libavformat/tls_openssl.c
  • Convert live stream of Rgba32 images and stream over RTP as H264 video stream

    7 juillet 2017, par Michael B

    Please bear with me as I’m relatively new to camera network streaming and ffmpeg.

    I’m currently receiving live IP camera stream as h264 over rtp via ffmpeg.autogen api code.

    We decode the live stream of frames as rgb24bpp and convert to writablebitmaps which we then apply some frame diagnostic markup consisting of text and rectangle filled background, and this is currently network streamed as encode jpegs from our server. Our client uses the Accord.Net framework receive a MJPEGstream to pull out the images and bind them as bitmaps to image source control in WPF front end to mimick a streaming video. This works well, but sending data over network like this is large.

    We’ve decided to look at moving away from mjpeg and instead use a higher compression format of h264.

    My aim is to compress and stream the marked up writable bitmaps over the network as compressed h264 video, as a live stream.

    Having done much research it seems it might be achievable my taking the source data of the writablebitmaps, which is RGBA32 raw data, convert this YUV and encode the yuv frames to h264 video. Below is a link that seems to demonstrate this conversion.

    https://github.com/codefromabove/FFmpegRGBAToYUV/blob/master/FFmpegRGBAToYUV/ConvertRGBA.cpp

    This example I think is what I need, but it is writing out to a video file, what I would like is to change the out of this example, so that it outputs as a video stream over network

    Is this achievable as a live stream ?

    Thanks

  • libavformat/tcp : fix return code for tcp_accept

    8 avril 2017, par Simon Thelen
    libavformat/tcp : fix return code for tcp_accept
    

    ff_accept can return AVERROR(ETIMEDOUT) and errno will be 0 (or
    undefined), return ret instead and return ff_neterror() in
    ff_poll_interrupt instead of AVERROR(errno) to parse WSAGetLastError on
    Windows.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/network.c
    • [DH] libavformat/tcp.c