Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (107)

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

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (18858)

  • how to resize video according to dar in pandastream

    11 décembre 2012, par Davis Cruz

    I want to resize a video so that it's sar(size aspect ratio) equals it's dar(display aspect ratio) either by adjusting the height or width in pandastream. I was thinking of adding some sort of ffmpeg command to a profile preset like pandastream's H264 HQ preset. I just need the video to have square pixels so that flowplayer can play them properly because flash does not take par(pixel aspect ratio) or dar into account it just uses sar.

  • Revision bc0a974310 : Fix to golden update in cyclic_refresh. For one pass CBR : only check for updati

    24 août 2015, par Marco

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.c



    Fix to golden update in cyclic_refresh.

    For one pass CBR : only check for updating refresh_golden
    if ext_refresh_frame_flags_pending is not set (i.e., == 0).
    And move the resetting of ext_refresh_frame_flags_pending = 0
    down to after the encode_loop (and account for dropped frames).

    This is to prevent changing refresh_golden flga when the user
    supplies the reference/update flags.

    Change-Id : I4d87b3e705ba43f243667e367503b585c61e2a54

  • avcodec/mpeg12dec : Sanitize start codes earlier

    20 septembre 2019, par Andreas Rheinhardt
    avcodec/mpeg12dec : Sanitize start codes earlier
    

    The MPEG-1/2 decoder uses avpriv_find_start_code to search for start
    codes and worked with the resulting start code before checking that it
    is really a start code of a slice. In particular, if the picture is so
    big that a slice_vertical_position_extension is present, it added the
    slice_vertical_position_extension as if it had a slice. Then a left
    shift is performed, without making sure that the value to be shifted is
    nonnegative.
    Afterwards the end result is checked, but even if a start code of a
    non-slice has been found, it might pass these checks : If
    slice_vertical_position_extension is present a start code <
    SLICE_MIN_START_CODE can lead to a macroblock-row index that appears
    valid. Furthermore, the left shift might make an invalid start code
    appear valid by discarding the highest bit.
    This has been fixed by checking directly after avpriv_find_start_code
    has returned.

    Fixes ticket #8162 (which is about the undefined left shifts).

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

    • [DH] libavcodec/mpeg12dec.c