Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (33)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7693)

  • ffmpeg puts black frames in the first few seconds of the video

    30 juin 2018, par Joe T. Boka

    I am adding an audio file to a video file, using ffmpy, which is a python wrapper for ffmpeg.

    The input audio file voice.wave and the input video file video.avi are the same length.

    When I use the below code, the output video output.ts contains both audio and video, as expected. The problem : the audio is running fine, but the first few seconds of the output video output.ts is black.

    from ffmpy import FFmpeg
    ff = FFmpeg(inputs={'video.avi': None, 'voice.wav': None}, outputs={'output.ts': '-c:v h264 -c:a ac3'})
    ff.cmd
    'ffmpeg  -i voice.wave -i video.avi -c:v h264 -c:a ac3 output.ts'
    ff.run()
  • I want to create the discord bot by use python,but ffmpeg always had problem

    12 décembre 2023, par Bot
    async def play(ctx, *, song_name):  

    if ctx.author.voice is None or ctx.author.voice.channel is None:
        await ctx.send("nobody")
        return

    voice_channel = ctx.author.voice.channel
    channel = None
    if ctx.voice_client is None:
        channel = await voice_channel.connect()
    else:
        await ctx.voice_client.move_to(voice_channel)

    ydl_opts = {'format': 'bestaudio'}
    videosSearch = VideosSearch(song_name, limit=1) 
    results = videosSearch.result()
    
    url = results['result'][0]['link']
    
    if voice_channel.guild.id in queues:
        queues[voice_channel.guild.id].append(url)
        
    else:
        queues[voice_channel.guild.id] = [url]
        
    if not ctx.voice_client.is_playing():
        await play_next(ctx.voice_client, voice_channel.guild.id)


    


    ffmpeg has this error detail :

    


    discord.player ffmpeg process 17656 successfully terminated with return code of 3199971767.

    


    I found the internet ,lots of people got the code of 1 or -1.

    


    But i get 3199971767 ,i don't know the meaning of this.

    


    BTW, my url is correct.

    


    Hoping someone can help me.

    


    TY

    


  • Invalid data error during ffmpeg .m4a conversion

    4 janvier 2023, par Kazi bácsi

    I wanted to edit my .m4a voice recording from Samsung Voice Recorder using ffmpeg 2.2.2, however, I got the error Invalid data found when processing input. I tried to open it through Audacity, but it returned an error claiming that the ffmpeg library is missing, which is definitely not the case. Eventually I tried to use online .m4a to .mp3 converters, but they all returned error, so I assume there may be an issue with the encoding of the original file and ffmpeg should be configured accordingly. What settings shall I use ? (The original file can be played on the phone without any problem.)

    


    ffmpeg -ss 00:00:19 -i "C:\Your\Folder\original.m4a" edited.m4a