Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (57)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (10879)

  • lavfi/vf_vpp_qsv : check output format string against NULL pointer

    9 janvier 2023, par Haihao Xiang
    lavfi/vf_vpp_qsv : check output format string against NULL pointer
    

    This is in preparation for reusing the code for other QSV filters. E.g.
    deinterlacing_qsv may have an option array without format option

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavfilter/vf_vpp_qsv.c
  • What is the most efficient way to convert wav audio string to an ogg file without writing it to disk ?

    1er janvier 2023, par Saurabh Kumar Karn

    My final objective is to use TTS to get some Indic text converted into audio and pass that audio to a messaging system that accepts mp3 and ogg. Ogg is preferred.

    &#xA;

    I am on Ubuntu and my flow for getting audio string is something like this.

    &#xA;

      &#xA;
    1. Text in Indic language is passed to an API
    2. &#xA;

    3. API returns a json with a key value called audioContent. audioString = response.json()[&#x27;audio&#x27;][0][&#x27;audioContent&#x27;]
    4. &#xA;

    5. The decoded string is arrived by using this decode_string = base64.b64decode(dat)
    6. &#xA;

    &#xA;

    I am currently converting it to mp3 and as you can see I am writing the wave file first and then converting it into an mp3.

    &#xA;

    wav_file = open("output.wav", "wb")&#xA;decode_string = base64.b64decode(audioString)&#xA;wav_file.write(decode_string)&#xA;&#xA;# Convert this to mp3 file&#xA;print(&#x27;mp3file&#x27;)&#xA;song = AudioSegment.from_wav("output.wav")&#xA;song.export("temp.mp3", format="mp3")&#xA;

    &#xA;

    Is there a way to convert audioString directly to ogg file without doing the io ?

    &#xA;

    I've tried torchaudio and pyffmpeg to load audioString and do the conversion but it doesn't seem to be working.

    &#xA;

  • avcodec/svq1enc : output ident string in extradata field

    31 octobre 2022, par Peter Ross
    avcodec/svq1enc : output ident string in extradata field
    

    This will enable the acurate identification of FFmpeg produced
    SVQ1 streams, should there be new bugs found in the encoder.

    • [DH] libavcodec/svq1enc.c
    • [DH] tests/ref/vsynth/vsynth1-svq1
    • [DH] tests/ref/vsynth/vsynth2-svq1
    • [DH] tests/ref/vsynth/vsynth3-svq1
    • [DH] tests/ref/vsynth/vsynth_lena-svq1