Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (40)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

Sur d’autres sites (6432)

  • ffmpeg/batch file : input format stays in output file name

    11 juin 2015, par Filipp

    I created this batch file to put all aac files in one directory into an m4a container. The command works so far, but every new file generated has the format of the input file in the output files name.

    For example : test(.aac) is in an m4a container but is NAMED test.aac(.m4a)

    Here is the .bat file :

    for /r %%X in (*.*) do (
       ffmpeg -i "%%X" "%%X.m4a"
    )
    pause

    I’ll be grateful for any easy solution, best regards and thanks to everyone

  • How to extract the rttm format file from .wav audio file

    5 juillet 2023, par Lahfir

    I would like to extract the .rttm file for an input .wav audio file in python

    


    def extract_rttm_file(wav_path):
  """Extracts the .rttm file from the converted wav file.

  Args:
    wav_path: The path to the converted wav file.

  Returns:
    The path to the .rttm file.
  """

  output_path = os.path.splitext(wav_path)[0] + ".rttm"
  subprocess.call(["sox", wav_path, "-rttm", output_path])
  return output_path`


    


    I tried the above code but it doesn't ouput the rttm file

    


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