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 (9007)

  • Revision 0fe589f21e : Fill buffer speed up Eliminates the byte by byte read from bool decoder, by re

    14 juillet 2015, par Jim Bankoski

    Changed Paths :
     Modify /vpx_dsp/bitreader.c


     Add /vpx_util/endian_inl.h


     Modify /vpx_util/vpx_util.mk



    Fill buffer speed up

    Eliminates the byte by byte read from bool decoder, by reading
    in a size_t and then shifting it into place.

    Change-Id : I0ed8c7b6f942847e79cc90105dc1d2b5b3deb0d6

  • Revision 18375238e9 : Combining integer and fractional parts of mvs for entropy coding. Combining enc

    15 mai 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encodemv.c


     Modify /vp9/encoder/vp9_encodemv.h



    Combining integer and fractional parts of mvs for entropy coding.

    Combining encode_nmv_component with encode_nmv_component_fp
    and read_nmv_component with read_nmv_component_fp. Bitstream is slightly
    changed (only the order of bits), here are the results on test sets :
    stdhd : +0.047, yt : -0.038, derf : +0.001, hd : -0.011.

    Change-Id : I1be312e976796df78ca63368702d0ee19f2b8c50

  • FFMPEG - Is it possible to reencode only some parts of a video

    1er mai 2021, par Maxou

    I'm using ffmpeg to create a HLS stream but if the video is already in x264 then I do not re-encode the video, however if the video's bitrate is not constant sometimes I got a buffer exception.

    


    I was wondering if it was possible to check the bitrate of the sequence that is being created and if it overflows a certain value only re-encode that sequence with a lower bitrate.

    


    Currently, I use this command

    


    ffmpeg -i test.mkv -map 0:v:0 -hls_list_size 0 -f hls -hls_time 2 -muxdelay 0 -vcodec copy -hls_segment_filename "seq-%d.ts" "index.m3u8"


    


    Thanks