Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (81)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (11459)

  • avcodec/pngenc : fix sBIT writing for indexed-color PNGs

    19 juillet 2024, par Leo Izen
    avcodec/pngenc : fix sBIT writing for indexed-color PNGs
    

    We currently write invalid sBIT entries for indexed PNGs, which by PNG
    specification[1] must be 3-bytes long. The values also are capped at 8
    for indexed-color PNGs, not the palette depth. This patch fixes both of
    these issues previously fixed in the decoder, but not the encoder.

    [1] : https://www.w3.org/TR/png-3/#11sBIT

    Regression since : c125860892e931d9b10f88ace73c91484815c3a8.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>
    Reported-by : Ramiro Polla : <ramiro.polla@gmail.com>

    • [DH] libavcodec/pngenc.c
  • Google cloud speech to text not giving output for OGG & MP3 files

    27 avril 2021, par Vedant Jumle

    I am trying to perform speech to text on a bunch of audio files which are over 10 mins long. I don't want to waste storage on the cloud bucket by straight-up uploading wav files on it. So I am using ffmpeg to convert the files either to ogg or mp3 like :&#xA;ffmpeg -y -i audio.wav -ar 12000 -r 16000 audio.mp3

    &#xA;

    ffmpeg -y -i audio.wav -ar 12000 -r 16000 audio.ogg

    &#xA;

    For testing purpose I ran the speech to text service on a dummy wav file and it seemed to work, I got the text as expected. But for some reason it isn't detecting any speech when I use the ogg or mp3 file. I could not give amr files to work either.

    &#xA;

    My code :

    &#xA;

    def transcribe_gcs(gcs_uri):&#xA;    client = speech.SpeechClient()&#xA;&#xA;    audio = speech.RecognitionAudio(uri=gcs_uri)&#xA;    config = speech.RecognitionConfig(&#xA;        encoding="OGG_OPUS", #replace with "LINEAR16" for wav, "OGG_OPUS" for ogg, "AMR" for amr&#xA;        sample_rate_hertz=16000,&#xA;        language_code="en-US",&#xA;    )&#xA;    print("starting operation")&#xA;    operation = client.long_running_recognize(config=config, audio=audio)&#xA;    response = operation.result()&#xA;    print(response)&#xA;

    &#xA;

    I have set up the authentication properly, so that is not a problem.

    &#xA;

    When I run the speech to text service on the same audio but in ogg or mp3(I just comment out the encoding setting from the config for mp3) format, it gives no response, just prints out a line break and done.

    &#xA;

    What can I do to fix this ?

    &#xA;

  • avformat/av1 : add color config values to AV1SequenceParameters

    30 juillet 2019, par James Almer
    avformat/av1 : add color config values to AV1SequenceParameters
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/av1.c