Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (46)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8014)

  • How can I apply zoom in/out filter on specific frame in video using ffmpeg ?

    4 novembre 2019, par Axita Kathiriya

    I want to apply zoom filter on specific frame on video using ffmpeg.

    for example, I want to make a slideshow of 5 images and each image will take 4-5 seconds for slide. I want zoom in/out effect on each image. So, i want to apply this effect at that time when particular image stay for 4-5 seconds. Please see this video link. I want same result like this using ffmpeg : https://youtu.be/nNTiyRDhlRY please refer first two slides of this link.

  • Python : FFmpeg Input/output error using discord.py

    29 mai 2023, par PeeblYweeb

    here is my code :

    


       async def direct(self, interaction: discord.Interaction, link: str):
        voice_client = get(self.bot.voice_clients, guild=interaction.guild)
        if voice_client is None:
            return await interaction.response.send_message("❌ Connect to a channel first.")

        await interaction.response.send_message("Using direct link.")
        voice_client.play(discord.FFmpegPCMAudio(link))
        return


    


    here is my error :

    


    [tls @ 0x557c73a19d00] Error in the pull function.
https://cdn.discordapp.com/attachments/1109998398150545410/1112473248505004142/portradio-_1_.ogg: Input/output error
2023-05-28 13:29:11 INFO     discord.player ffmpeg process 1458408 successfully terminated with return code of 0.


    


    this happens usually around half-way through whatever im playing consistently

    


    i've tried setting arguments like :

    


    ffmpeg_options = {'options': '-vn -dn -sn -ignore_unknown -fflags +discardcorrupt'}


    


    from this other post
’corrupt input packet in stream 1’ error in FFMPEG
which fixed the error corrupt input packet but im still having trouble any ideas ?

    


    goal is to get the audio playing to discord without having to store the file locally then playing it from there then discarding it after.

    


  • FFMPEG concatenate 2 random and different videos

    7 mars 2019, par Abibad Abdou

    I am trying to make an app in which users can send a video and it will be concatenated with other videos automatically. So the videos are in random formats, but I am converting them before concatenation using this command :

    ffmpeg -y -i {orginalVideo.itsExtention} -vcodec wmv2 4.wmv

    For the concatenation I have the following command :

    ffmpeg -y -i concat.wmv -i 4.wmv -filter_complex "[0:0][0:1][1:0][1:1] concat=n=2:v=1:a=1" output.wmv

    but I get the following error

    Input link in1:v0 parameters (size 640x480, SAR 1:1) do not match the corresponding output link in0:v0 parameters (1080x1920, SAR 1:1)

    Failed to configure output pad on Parsed_concat_0
    Error reinitializing filters!
    Failed to inject frame into filter network: Invalid argument
    Error while processing the decoded data for stream #1:0

    Thank you for your answer