Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (72)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (9933)

  • Add FUNDING.json

    19 juin, par Michael Niedermayer
    Add FUNDING.json
    

    We have been contacted by Monet du Plessis of the etherium foundation and
    Natascha Buck (Grants at the Better Internet Foundation)

    "The Ethereum Foundation is thrilled to inform you that your contribution to
    open-source software development through your work on ffmpeg
    https://github.com/FFmpeg/FFmpeg has been recognized and rewarded by the
    Devcon team ! Your project played a fundamental role in the success of Devcon
    <http://devcon.org/>, helping to create a more meaningful experience for
    the Ethereum community. In collaboration with Drips Network
    <https://www.drips.network/>, we are pleased to award you $2,240.00 in
    appreciation of your efforts and to support your continued efforts in
    open-source development."

    To be able to claim donations through the drips network we need to
    specify a wallet to do so in FUNDING.json

    This will also allow FFmpeg to receive future funding and donations
    through the drips network.

    The specified wallet is a safe wallet backed by a ledger hw wallet.
    We can later change who controls the safe wallet. (For example it
    could be passed on to the SPI treasurer)

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] FUNDING.json
  • I faced ffmpeg error in my project run time

    3 juillet 2023, par Jesy J
    Runtime error: can&#x27;t load audio from file: &#x27;ffmpeg&#x27; not found. Please install &#xA;&#x27;ffmpeg&#x27; in your system to use non- wav audio file format and make sure &#x27;ffprobe&#x27; &#xA;is in your path&#xA;

    &#xA;

    I configure ffmpeg in my system but still I face this error.

    &#xA;

    This is my code :

    &#xA;

    !pip install gradio&#xA;!pip install SpeechRecognition&#xA;!pip install pydub&#xA;!pip install openai&#xA;&#xA;import gradio as gr&#xA;import speech_recognition as sr&#xA;from pydub import AudioSegment&#xA;import openai&#xA;&#xA;# Set up OpenAI API&#xA;openai.api_key = [MASKED]&#xA;&#xA;# Function to convert text to speech using OpenAI&#x27;s API&#xA;def text_to_speech(text, language):&#xA;    response = openai.Completion.create(&#xA;        engine="davinci",&#xA;        prompt=f"Translate the following English text into {language}: \"{text}\"",&#xA;        max_tokens=100,&#xA;        temperature=0.8,&#xA;        top_p=1.0,&#xA;        frequency_penalty=0.0,&#xA;        presence_penalty=0.0,&#xA;        stop=None,&#xA;        n=1,&#xA;        log_level="info"&#xA;    )&#xA;    return response.choices[0].text.strip()&#xA;&#xA;# Function to recognize speech from audio&#xA;def speech_to_text(audio):&#xA;    recognizer = sr.Recognizer()&#xA;    with sr.AudioFile(audio) as source:&#xA;        audio_data = recognizer.record(source)&#xA;    return recognizer.recognize_google(audio_data)&#xA;&#xA;# Function to convert audio to desired language&#xA;def convert_language(audio, target_language):&#xA;    recognized_text = speech_to_text(audio)&#xA;    translated_text = text_to_speech(recognized_text, target_language)&#xA;    return translated_text&#xA;&#xA;# Function to process user input and generate output&#xA;def process_audio(input_audio, target_language):&#xA;    converted_text = convert_language(input_audio.name, target_language)&#xA;    return gr.outputs.Audio(converted_text, type="filepath")&#xA;&#xA;# Set up Gradio interface&#xA;audio_input = gr.inputs.Audio(source="microphone")&#xA;&#xA;language_input = gr.inputs.Dropdown(choices=["English", "French", "German"])  # Add more languages as needed&#xA;&#xA;output_audio = gr.outputs.Audio(type="filepath", label="Output Audio")&#xA;&#xA;title = "Multilingual AI Voice Assistant"&#xA;&#xA;description = "Upload an audio file and select the target language for translation."&#xA;&#xA;gr.Interface(fn=process_audio, inputs=[audio_input, language_input], outputs=output_audio, title=title, description=description).launch()&#xA;

    &#xA;

  • Java video manipulation library

    21 octobre 2015, par Gabriele Ciech

    I’m searching for a Java library that allows me to do some video manipulation like splitting a video in many parts and converting it into some other formats.

    I’ve found out that there are already some libraries like Xuggler but they are no more under active development or mantained.

    Can someone tell me which library I can use for accomplish my task or how can I build my own wrapper for ffmpeg ?
    Thanks for helping me