Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (97)

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (9427)

  • is there any way to change still images to video in php on windows plate form [on hold]

    13 juin 2014, par user3548569

    I have a scenario for creating a video files using different images.

    What can I do is, basically I have images and I want create a video file using PHP.

    Can any one please suggest the start up point for this ? Have done image capture from video and converting the video using Ffmpeg so I have think of Ffmpeg but, I think it will not allow to create a video.

    i need to develop a movie with more then 5 pic. If i added images , then php convert it to movies or video. is there any toll to convert images to video in php on windows ???
    thanks

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

  • How to grab a thumbnail from a video using ffmpeg in Mac Automator [closed]

    8 octobre 2020, par Bergfrühling

    I'm an absolute beginner but I managed to grab the very first Frame of a .mov as an still image using ffmpeg.

    


    % cd /Users/name/Desktop
% ffmpeg -ss 00:00:01 -i input.mov -vframes 1 -q:v 2 output.jpg


    


    But now I would like to do that with several movies at the same time and by using the Mac Automator.
Input should be by an Automator Quick Action.
Output Filename should be the same like the video filename.
Can anyone help a noob like me ? THX !