Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (69)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6683)

  • lavf : Do not list mov-only codecs in riff.c.

    13 mars 2015, par Carl Eugen Hoyos
    lavf : Do not list mov-only codecs in riff.c.
    

    Instead check for all mov code-points when demuxing avi
    and print a warning if a video codec is found like this.
    Fixes a regression similar to the one described in ticket #4307.

    • [DH] libavformat/avidec.c
    • [DH] libavformat/riff.c
  • avcodec/av1dec : Return error for unsupported tile list OBU

    28 décembre 2023, par Fei Wang
    avcodec/av1dec : Return error for unsupported tile list OBU
    

    Otherwise decoding maybe successful but output result is incorrect.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/av1dec.c
  • Can I pass a list of image into the input method of ffmpeg-python

    31 janvier 2023, par se7en

    My task involves using ffmpeg to create video from image sequence.&#xA;the code belows solves the problem.

    &#xA;

    import ffmpeg&#xA;&#xA;video = ffmpeg.input(&#x27;/path/to/images/*.jpg&#x27;, pattern_type=&#x27;glob&#x27;,framerate=20).output(video.mp4).run()&#xA;

    &#xA;

    However since the image data we are getting follows the pattern

    &#xA;

    1.jpg,&#xA;2.jpg,&#xA;3.jpg&#xA;.&#xA;.&#xA;20.jpg&#xA;.&#xA;.&#xA;100.jpg&#xA;

    &#xA;

    the video get created with the glob pattern 1.jpg, 100.jpg, 11.jpg, 12.jpg, ... 2.jpg, 20.jpg, 21.jpg ... which is very unpleasant to watch.

    &#xA;

    Is there anyway I can pass a list or anything else aside a path/glob pattern where the images are sorted in order.&#xA;Also as a bonus I will be happy if I can choose which files to add as an the input method input()

    &#xA;