Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (32)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4595)

  • FFMPEG : How to merge two sounds with good quality ?

    26 avril 2021, par Mahmoud Eidarous

    I'm trying to merge a recorded sound with an audio file and make it sound like an original song.

    


    I'm using this command

    


    ffmpeg -i audiofile.mp3 -i recorded_file.wav -filter_complex "[0:a]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=0.5[a1]; [1:a]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=7[a2]; [a1][a2]amerge=inputs=2,pan=stereo|c0code>

    


    This command does achieve the merge, but the quality of the output song is very bad.

    


    I tried to manipulate the volume values but still the quality is bad.

    


    I believe a filter is required on the recorded sound or something...

    


    Any help to make the output sound like an original song would be really appreciated.

    


  • Python / Discord FFMPEG playing not a audio

    19 août 2022, par F L R U Z

    I wanted to play an mp3 file in a voice channel, however, it gives me an error... I have already installed FFMPEG correctly on my computer.

    


    My Code :

    


    @bot.command()
async def joinandplay(ctx):
   song = os.path.isfile("musik.mp3")
   voice_channel = bot.get_channel(940326390857883648)
   vc = await voice_channel.connect()
   voice = discord.FFmpegPCMAudio(song)
   vc.play(voice)


    


    The error :

    


    AttributeError: 'FFmpegPCMAudio' object has no attribute '_process'


    


  • How to fix ClientException : ffmpeg was not found

    26 juin 2022, par ESIM dude

    So I have this play command here :

    


        @commands.command(name='play')
    async def play(self, ctx: commands.Context, *, search: str):

        if not ctx.voice_state.voice:
            await ctx.invoke(self.join)

        async with ctx.typing():
            try:
                source = await YTDLSource.create_source(ctx, search, loop=self.bot.loop)
            except YTDLError as e:
                await ctx.reply('An error occurred while processing this request: {}'.format(str(e)))
            else:
                song = Song(source)

                await ctx.voice_state.songs.put(song)
                await ctx.reply('Enqueued {}'.format(str(source)))


    


    And when I do !play disaster kslv, it says this error in the output :
An error occurred: Command raised an exception: ClientException: ffmpeg was not found.
Even though I have the C :\ffmpeg\bin in the path environmental variables, It still shows this error. Can someone help ?