Recherche avancée

Médias (91)

Autres articles (77)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (10869)

  • avformat : Immersive Audio Model and Formats demuxer

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

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

    • [DH] Changelog
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/iamf.c
    • [DH] libavformat/iamf.h
    • [DH] libavformat/iamf_parse.c
    • [DH] libavformat/iamf_parse.h
    • [DH] libavformat/iamfdec.c
  • 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;