Recherche avancée

Médias (91)

Autres articles (50)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

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

  • avcodec/vaapi_encode_h264 : use is_reference to fill reference_pic_flag

    5 mars 2024, par Tong Wu
    avcodec/vaapi_encode_h264 : use is_reference to fill reference_pic_flag
    

    This codec supports FLAG_B_PICTURE_REFERENCES. We need to correctly fill
    the reference_pic_flag with is_reference variable instead of 0 for B
    frames.

    Signed-off-by : Tong Wu <tong1.wu@intel.com>

    • [DH] libavcodec/vaapi_encode_h264.c
  • Video duration huge number tried to run through ffmpeg but still got a different huge number

    12 novembre 2016, par jon

    I recorded a video on Twitch using streamlink, but sometimes when I get the video the video duration is completely off.

    For example, if the video is 6 hours long, I get a random number like 235:23:00 or sometimes I just get 00:00. While the video still works you can’t use the time bar because it’s such a large number. When it is 00:00, every time you try to scroll past it starts over.

    I tried to run it through ffmpeg and it did change the video duration. However, it is still abnormally large at 29:33:44. What could I be doing wrong ? Can someone start me off in the right direction ?

  • cafenc : fill in avg. packet size later if unknown

    10 juillet 2021, par Roman Beranek
    cafenc : fill in avg. packet size later if unknown
    

    Frame size of Opus stream was previously presumed here to be 960 samples
    (20ms), however sizes of 120, 240, 480, 1920, and 2880 are also allowed.
    It can also alter on a per-packet basis and even multiple frames may be
    present in a single packet according to the specification, for the sake
    of simplicity however, let us assume that this doesn't occur.

    Because the mFramesPerPacket field, representing the number of samples
    per packet in the ffmpeg terminilogy, is the key factor in calculating
    packet durations and all that follows from that (index, bitrate, ...),
    it is crucial to get right.

    Therefore, if the packet size is not available ahead of time (as it is in
    the case of Opus), calculate an average from the stream duration once we
    know how many packets there are and update the filed in the header.

    • [DH] libavformat/cafenc.c