Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (51)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4752)

  • libavcodec/exr : add support for uint32 channel decoding with pxr24

    17 novembre 2016, par Martin Vignali
    libavcodec/exr : add support for uint32 channel decoding with pxr24
    

    Doesn’t decode the uint32 layer, but decodes the half part of the file.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/exr.c
  • PyAV inconsistency when parsing packets from h264 frames

    3 avril 2022, par Shlomi Uziel

    When producing H.264 frames and decoding them using pyAV, packets are parsed from frames only when invoking the parse methods twice.

    &#xA;

    Consider the following test H.264 input, created using :

    &#xA;

    ffmpeg -f lavfi -i testsrc=duration=10:size=1280x720:rate=30 -f image2 -vcodec libx264 -bsf h264_mp4toannexb -force_key_frames source -x264-params keyint=1:scenecut=0 "frame-%4d.h264"

    &#xA;

    Now, using pyAV to parse the first frame :

    &#xA;

    import av&#xA;codec = av.CodecContext.create(&#x27;h264&#x27;, &#x27;r&#x27;)&#xA;with open(&#x27;/path/to/frame-0001.h264&#x27;, &#x27;rb&#x27;) as file_handler:&#xA;    chunk = file_handler.read()&#xA;    packets = codec.parse(chunk) # This line needs to be invoked twice to parse packets&#xA;

    &#xA;

    packets remain empty unless the last line is invoked again (packets = codec.parse(chunk))

    &#xA;

    Also, for different real life examples I cannot characterize, it seems that decoding frames from packets also require several decode invocations :

    &#xA;

    packet = packets[0]&#xA;frames = codec.decode(packet) # This line needs to be invoked 2-3 times to actually receive frames.&#xA;

    &#xA;

    Does anyone know anything about this incosistent behavior of pyAV ?

    &#xA;

    (Using Python 3.8.12 on macOS Monterey 12.3.1, ffmpeg 4.4.1, pyAV 9.0.2)

    &#xA;

  • avplay : Handle pixel aspect ratio properly

    6 juillet 2014, par Martin Storsjö
    avplay : Handle pixel aspect ratio properly
    

    This was broken (left half-implemented) in 354468fc12.

    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] avplay.c