Recherche avancée

Médias (91)

Autres articles (19)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5637)

  • How to render a 7 minutes video duration but only play 4 minutes and then stop but total length of video is still remain 7 minutes with ffmpeg ?

    7 août 2018, par Adam Estel

    How to render a 7 minutes video duration but only play 4 minutes and then stop but total length of video is still remain 7 minutes when i uploaded it to youtube, just like this image :
    enter image description here

    I try nullsrc fillter but it didn’t success,it’s still play entire 7 minutes to end video not 4 minutes
    I had researched google but i didn’t have a clue, then is there a way to do it ?

  • Physical Calculus Education

    2 septembre 2011, par Multimedia Mike — General

    I have never claimed to be especially proficient at math. I did take Advanced Placement calculus in my senior year of high school. While digging through some boxes, I found an old grade report from that high school year. I wondered what motivated me to save it. Maybe it’s because it offered this clue as to why I can’t perform adequately in math class :



    Mystery solved : I did not wear proper P.E. attire to calculus class.

  • How to detect when a mp3 stops playing in ffmpeg

    23 mai 2021, par Jacob Shankman

    back yet again to ask this : I have a ost command for my discord bot. All it does is join the vc that the user is in, and plays a random choice of mp3's that I have as a list. It works fine. Except for when the song is over, it just stays there. Im wondering how to detect when ffmpeg has finished playing the mp3 so
I can execute a function to tell the bot to disconnect once it has finished. Here is the code for the command :

    


    @client.command()
async def speak(message):
    voice_s = await message.author.voice.channel.connect()
    voice_s.play(discord.FFmpegPCMAudio(random.choice(speak_list)))