Recherche avancée

Médias (91)

Autres articles (32)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (7905)

  • Make a video file with the song cover for each song in a folder [closed]

    19 novembre 2024, par Nathan Kaufmann

    I have a folder full of wav audio files, and I would want, using ffmpeg in a batch file, to output as many video files as there is songs, with a still image of the cover, with the highest possible audio quality as permitted by ffmpeg. Additionally I would want the metadata (title, artist, album and year) to be copied to the corresponding video file.

    


    For now I have the command :
ffmpeg -f lavfi -i color=c=black:s=640x480 -i song.wav -c:v libx264 -tune stillimage -pix_fmt yuv420p -shortest -c:a aac -ar 96000 -b:a -metadata title="My title" 1000000000k output.mp4

    


    But it only makes a black video with the song, with the highest quality sound I could set, and it changes the title but I couldn't find how to change it to the song's title. Also for now I don't know how to automate it for a whole folder.

    


  • MAINTAINERS : add address to contact "AvxSynth Team"

    3 juillet 2013, par Michael Niedermayer
    MAINTAINERS : add address to contact "AvxSynth Team"
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] MAINTAINERS
  • How to make a bot to search song automatically on YouTube after input some words of the song ?

    30 juin 2021, par SOHAM DAS BISWAS.

    I had made a discord bot using python which plays YouTube songs. It takes the link to play a song I want to make it short. I want to give some words of the song and it will search automatically the song on YouTube and play it for me.

    &#xA;

    My Code :-

    &#xA;

    import discord,requests, sys, webbrowser, bs4&#xA;import youtube_dl&#xA;import os&#xA;from dotenv import load_dotenv&#xA;import ffmpeg&#xA;from discord.ext import *&#xA;from discord.ext import commands&#xA;from discord.ext.commands import Bot&#xA;from discord.voice_client import VoiceClient&#xA;import asyncio&#xA;@client.command(pass_context=True)                      #====================================Join&#xA;async def join(ctx):&#xA;    channel = ctx.author.voice.channel&#xA;    await channel.connect()&#xA;@client.command()                                         #===================================Play&#xA;async def play(ctx, url:str):&#xA;    song_there = os.path.isfile("song.mp3")&#xA;    try:&#xA;        if song_there:&#xA;            os.remove("song.mp3")&#xA;            player.clear()&#xA;    except PermissionError:&#xA;        await ctx.send("Wait for the current playing music end or use the &#x27;stop&#x27; command...")&#xA;        return&#xA;    await ctx.send("Getting everything ready, playing audio soon, depends on your internet speed...")&#xA;    print("Someone wants to play music let me get that ready for them...")&#xA;    voice = discord.utils.get(client.voice_clients, guild=ctx.guild)&#xA;    ydl_opts = {&#xA;        &#x27;format&#x27;: &#x27;bestaudio/best&#x27;,&#xA;            &#x27;postprocessors&#x27;: [{&#xA;            &#x27;key&#x27;: &#x27;FFmpegExtractAudio&#x27;,&#xA;            &#x27;preferredcodec&#x27;: &#x27;mp3&#x27;,&#xA;            &#x27;preferredquality&#x27;: &#x27;192&#x27;,&#xA;        }],&#xA;    }&#xA;    with youtube_dl.YoutubeDL(ydl_opts) as ydl:&#xA;        ydl.download([url])&#xA;    for file in os.listdir("./"):&#xA;        if file.endswith(".mp3"):&#xA;            os.rename(file, &#x27;song.mp3&#x27;)&#xA;    voice.play(discord.FFmpegPCMAudio("song.mp3"))&#xA;    &#xA;    voice.volume = 100&#xA;

    &#xA;

    Please help me to solve this.

    &#xA;