Recherche avancée

Médias (91)

Autres articles (99)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4414)

  • audio video recording without ffmpeg in Python [closed]

    22 janvier 2021, par Ruzanna Ordyan

    I have created an audio-video recording tool in Python using ffmpeg, video format mp4. The executable file, done via pyinstaller, works fine. However, I am looking for a way around without ffmpeg, because it won't work on a client computer if ffmpeg is not installed.

    


    Any ideas how I can do it without ffmpeg ?

    


  • checking codec info of a audio (.Wav) files in python [closed]

    4 mars 2020, par UserAtHome

    How to check .wav audio file codec values in using python. below the code i tried but it’s not giving the desired output what i needed.

    from wavinfo import WavInfoReader

    path = ’C :/Users/..../D4Xuuuu8s.wav’

    info = WavInfoReader(path)

  • Timeline editing with ffmpeg-python

    25 mai 2023, par Synthels

    I'm trying to draw a box on one part of the screen at a specific instance in time. I've tried looking through the documentation for ffmpeg-python, but am unable to locate any instance of support for the enable option.

    


    I tried using

    


    (
ffmpeg
  .input(video)
  .drawbox(x, y, w, h, enable=f"between(t,{timestamp},{total_time})")
  .output("out.mp4")
  .run()
)


    


    hoping that it would be passed to ffmpeg as a kwarg, but this has no effect on the video and the box never gets drawn.