Recherche avancée

Médias (91)

Autres articles (96)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7397)

  • Revision 31647 : - mettre dans une fonction séparée la recherche des connexions existantes

    18 septembre 2009, par marcimat@… — Log

    - mettre dans une fonction séparée la recherche des connexions existantes

  • VP9 tiled encoding for view-port dependent 360-degree VR streaming

    28 janvier 2021, par Victor Coyter

    I am trying to use libvpx-vp9 to encode a 360-degree VR video and generate multi-bitrate viewport-dependent playlist, that is :

    


      

    • A video stream could be splitted in to n*m tiles (e.g., 8x8)
    • 


    • Users may fetch those high-resolution tiles which insides their view-port via HTTP webm
    • 


    • and fetch low-resolution tiles which outsides their view-port
    • 


    • Finally, combine the video (without decoding) and render with OpenGL shaders
    • 


    


    Similar ideas like OMAF has been implemented by Intel / fraunhofer hhi, but they were using H.265.

    


    Is that possible to implement in VP9 ?

    


    The tiles in VP9 is designed to accelerate the encoding process by multi-threading, but as per defined in VP9 bitstream specifications, a tile is a "rectangular region of the frame that could be able to be decoded and encoded independently"

    


    I can find that libvpx provide options : --tile-rows and --tile-column and can successfully run them, while they indeed use multi-thread to encode.

    


  • avcodec/cbs : ensure user_data is padded for GBC parsing

    5 octobre 2018, par Aman Gupta
    avcodec/cbs : ensure user_data is padded for GBC parsing
    

    Fixes crash noticed in the cbs_userdata patchset.

    ====ERROR : AddressSanitizer : heap-buffer-overflow on address 0x609000026c89 at pc 0x00010725d37b bp 0x7ffeea04e750 sp 0x7ffeea04e748
    READ of size 4 at 0x609000026c89 thread T0
    #0 0x10725d37a in ff_cbs_read_unsigned get_bits.h:274
    #1 0x1072d2767 in ff_cbs_read_a53_user_data cbs_misc_syntax_template.c:119
    #2 0x1078251a7 in h264_metadata_filter h264_metadata_bsf.c:595
    #3 0x105c1321d in output_packet ffmpeg.c:853

    0x609000026c89 is located 1 bytes to the right of 8-byte region [0x609000026c80,0x609000026c88)
    allocated by thread T0 here :
    #0 0x10aef08d7 in wrap_posix_memalign (libclang_rt.asan_osx_dynamic.dylib:x86_64h+0x578d7)
    #1 0x10aca95e6 in av_malloc mem.c:87
    #2 0x10ac545fe in av_buffer_allocz buffer.c:72
    #3 0x107263b27 in cbs_h264_read_nal_unit cbs_h264_syntax_template.c:722
    #4 0x10725b688 in cbs_read_fragment_content cbs.c:155

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavcodec/cbs_h264_syntax_template.c
    • [DH] libavcodec/cbs_mpeg2_syntax_template.c