Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (95)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7056)

  • try to generate a frame from a video using FFmpeg command and try to save all frame in a upload directory

    15 juillet 2022, par Rahul singh
    import ffmpeg

import os

for video in os.listdir(video_path):

     if video.endswith(".mp4"):

          if not os.path.exists('upload'):

                 os.makedirs('upload')
                 os.chdir('upload')
                 print(os.getcwd())
                 command = f'ffmpeg -i {video} frame_%0d.jpg'
                 os.system(command)


    


    i am trying to generate frame using ffmpeg command and save frame in upload directory but not able to do it. can anyone help me with this. It will be great help. Thanks in advance.

    


  • arm : Use .data.rel.ro for const data with relocations

    16 novembre 2014, par Martin Storsjö
    arm : Use .data.rel.ro for const data with relocations
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
    • [DBH] libavcodec/arm/fft_fixed_neon.S
    • [DBH] libavcodec/arm/fft_neon.S
    • [DBH] libavcodec/arm/fft_vfp.S
    • [DBH] libavutil/arm/asm.S
  • Can I save a matplotlib animation to webm format ?

    19 septembre 2017, par Nikhil Mahajan

    I am using this example code as a test case : https://matplotlib.org/examples/animation/moviewriter.html

    In this code, they use FFMPEG to write the matplotlib animation to an .mp4 video file. Is it possible to write to a .webm format ?

    But I am not sure how to go about doing this.