Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (88)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (7551)

  • Anomalie #4262 : Permettre à editer_auteur de changer à la fois mail et mot de passe

    17 avril 2019, par jluc -

    En pratique j’ai contourné en faisant 2 formulaires : un pour changer le mail et d’autres infos, et un spécialement pour changer le mot de passe.

  • How to quickly Compile x264

    20 octobre 2014, par Zohaib Khalid

    I want to compile x264 with ffmpeg . So i follow the procedure according to the picture !

    # cd /my/path/where/i/keep/compiled/stuff
    # git clone git://git.videolan.org/x264.git
    # cd x264
    # ./configure --enable-static --enable-shared
    # make
    # make install
    # ldconfig

    but after changing my folder to x264 . The following command is not running as it saying this :

    # ./configure --enable-static --enable-shared

    ’.’ is not recognized as an internal or external command,operable program or batch file
    Now please help how to solve this. Any help would be appreciated.

  • Python, How can I get frames with a stride, such as 500, quickly ?

    14 août 2019, par dwqy11

    I’d like to get a lot of frames from videos, like movies, and set the stride as 500 or much more. I have tried imageio as following, but it’s slow. Is there any methods quicker ?

    filename='./alita.mkv'
    vid=imageio.get_reader(filename, 'ffmpeg')
    cnt = 0
    for i, im in enumerate(vid):
       if i % 500 == 0:
           cnt += 1
           cv2.imwrite('./alita/alita_{}.jpg'.format(cnt), im)

    BTW, what’s the type of the vid get by imageio.get_reader(), it is not a list ?