Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (111)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (9687)

  • Green tint color shift converting RGBA to YUV420p ffmpeg libavcodec

    2 août 2017, par Michael B

    I was wondering someone could help. I’m currently taking converting RBGA bitmaps to YUV420p before encoding the frames with h264 codec and dumping the encoded packets to file successfully.

    I’m also able to playback the h264 video file in VLC. However, there seems to be a color shift which is more apparent where grey is actually light tint of screen. I’m used a an animation video as my example which is supposed to show a blue sky in the background, however after converting the image, I’m getting an orange sky background. Do you have any ideas how I can fix this please ?

    Do you happen to know if it’s possible to convert rgba to yuv BEFORE calling sws_scale and before encoding packet ?

  • vp9 : error out if chroma subsampling changes between frames.

    5 mai 2015, par Ronald S. Bultje
    vp9 : error out if chroma subsampling changes between frames.
    

    This can happen after an intra-only frame. For reference, see :
    https://groups.google.com/a/webmproject.org/forum/#!msg/webm-discuss/zaoTxREZjq8/v5Enht87AhcJ

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

    • [DH] libavcodec/vp9.c
  • Streaming RTP and RTMP from FFmpeg C++ simultaneously. Will the RTP connection suffer if the RTMP connection experiences latency ?

    14 juin 2021, par robotcoder

    I wish to use the FFmpeg C++ library to simultaneously send the two following h264 video streams :

    &#xA;

      &#xA;
    • RTP h264 to Server A
    • &#xA;

    • RTMP h264 to Server B
    • &#xA;

    &#xA;

    Note : The h264 encoding will only happen once per frame. The same video content will be sent to both streams.

    &#xA;

    I wish the RTP latency to be as small as humanly possible. I am concerned that any network issue in the RTMP stream/connection might cause latency in the RTP stream.

    &#xA;

    Is this a valid concern ? If true, is there a way to mitigate the problem ?

    &#xA;