Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (46)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4667)

  • Combining an audio file with video file in python

    9 mai 2024, par Fahadkalis

    I am writing a program in Python on RaspberryPi(Raspbian), to combine / merge an audio file with video file.

    


    Format of Audio file is WAVE
Format of Video file is h264

    


    Audio and video already recorded and created at same time successfully, I just need to merge them now.

    


    Can you please guide me on how do I do that ?

    


  • Combining an audio file with video file in python

    3 février 2015, par Fahadkalis

    I am writing a program in Python on RaspberryPi(Raspbian), to combine / merge an audio file with video file.

    Format of Audio file is WAVE
    Format of VIdeo file is h264

    Audio and video already recorded and created at same time successfully, I just need to merge them now.

    Can you please guide me on how do I do that ?

  • "No such file or directory" sp.Popen module

    27 mars 2016, par user3481652

    I am trying to take a video and convert it in audio , for this I am using ffmpeg in python. I run the following command but it gives me " No such file or directory" for the input file. Here’s the code-

    FFMPEG_BIN = "ffmpeg"
    import subprocess as sp
    command = [FFMPEG_BIN, '-i', '/home/suryansh/Downloads/t.mp4']
    pipe = sp.Popen(command, stdout = sp.PIPE)

    After executing this code I get home/suryansh/Downloads/t.mp4: No such file or directory but the file is their in the path specified.