Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

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 (17697)

  • lavf/hls : enable custom interrup callback in sub-demuxer

    18 juillet 2020, par Jun Zhao
    lavf/hls : enable custom interrup callback in sub-demuxer
    

    Enable the custom callback in sub-demuxer

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavformat/hls.c
  • avcodec/v210dec : disallow negative custom stride

    11 juin 2022, par Marton Balint
    avcodec/v210dec : disallow negative custom stride
    

    Also make sure a big custom stride does not overflow size check.

    Avoids segfaults.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/v210dec.c
  • How can I download videos from reddit using praw

    9 octobre 2023, par rabbibillclinton

    So I want to download videos from reddit, I've seen projects on github but I'm very new to python and don't know how it works, if someone could explain I'd appreciate it, I found this project It works but it seperates audio and video and I want it all in one, I think you can combine those using ffmpeg but I don't know how that works either, also how do I configure some of this stuff like where the videos save and quality, here's my code.

    &#xA;

    from redvid import Downloader&#xA;import praw&#xA;&#xA;reddit = praw.Reddit(client_id = "a", client_secret = "b", user_agent = "c")&#xA;&#xA;subreddit = reddit.subreddit("learnpython")&#xA;hot = subreddit.hot(limit=5)&#xA;&#xA;downloader = Downloader(max_q=True)&#xA;&#xA;for submission in hot:&#xA;    downloader.url = submission.url&#xA;    reddit.download()&#xA;

    &#xA;