Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (59)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6991)

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

  • 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