Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

  • avformat : Immersive Audio Model and Formats muxer

    25 novembre 2023, par James Almer
    avformat : Immersive Audio Model and Formats muxer
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] Changelog
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/iamf_writer.c
    • [DH] libavformat/iamf_writer.h
    • [DH] libavformat/iamfenc.c
    • [DH] libavformat/version.h
  • Save generated image to ImageField model Django

    7 janvier 2023, par MrLonely
    &#xA;

    Detected path traversal attempt in '/home/mrlonely/Desktop/lumen/lumen/media/thumbnail/6.jpeg'

    &#xA;

    &#xA;

    When i run this in the views.py :

    &#xA;

    def generate_thumbnail(instance):&#xA;   post = Post.objects.get(pk=instance.pk)&#xA;   output = &#x27;media/thumbnail/&#x27; &#x2B; post.title &#x2B; &#x27;.jpeg&#x27;&#xA;   filename_thumbnail = Path.joinpath(filename, output)  &#xA;   try:&#xA;      (&#xA;            ffmpeg&#xA;            .input(str(filename)&#x2B;post.video.url, ss=&#x27;00:00:20&#x27;)&#xA;            .output(output, vframes=1)&#xA;            .overwrite_output()&#xA;            .run(capture_stdout=True, capture_stderr=True)&#xA;        )&#xA;      with open(filename_thumbnail, &#x27;rb&#x27;) as file_handler:&#xA;         django_file = File(file_handler)&#xA;         post.thumbnail.save(filename_thumbnail, &#x27;thumbnail/&#x27;)&#xA;   except ffmpeg.Error as e:&#xA;        print(e.stderr.decode(), file=sys.stderr)&#xA;        sys.exit(1)&#xA;

    &#xA;

    I am trying to connect the ffmpeg generated thumbnail to the model ImageField on the Post model (instance is post)

    &#xA;

  • avfilter/palettegen : base box split decision on a perceptual model

    27 décembre 2022, par Clément Bœsch
    avfilter/palettegen : base box split decision on a perceptual model
    

    Similar to the change in paletteuse, we rely on a perceptual model to
    decide how and where to split the box.

    • [DH] libavfilter/Makefile
    • [DH] libavfilter/vf_palettegen.c
    • [DH] tests/ref/fate/filter-palettegen-1
    • [DH] tests/ref/fate/filter-palettegen-2