Recherche avancée

Médias (91)

Autres articles (75)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

Sur d’autres sites (5315)

  • Expose the state of the jqXHR object as state() method on the data argument.

    18 mars 2013, par blueimp

    m js/jquery.fileupload.js Expose the state of the jqXHR object as state() method on the data argument.

  • My heroku music bot works fine if i launch it through my pc yet when i run it through heroku it doesn't work

    6 mars 2020, par Flii TV

    I have ffmpeg, youtube-dl installed, i have every requirement installed, it downloads the song renames it but then nothing happens !

    @client.command()
    async def play(ctx, *url: str):
       song_there = os.path.isfile("song.mp3")
       try:
           if song_there:
               os.remove("song.mp3")
               print("Removed old song file")
       except PermissionError:
           print("Trying to delete song file, but it's being played")
           await ctx.send("ERROR: Music playing")
           return

       await ctx.send("Getting everything ready now")

       voice =  get(client.voice_clients,  guild=ctx.guild)

       ydl_opts = {
           'format': 'bestaudio/best',
           'quiet': True,
           'outtmpl':"./song.mp3",
           'postprocessors': [{
               'key': 'FFmpegExtractAudio',
               'preferredcodec': 'mp3',
               'preferredquality': '192',
           }],
       }

       song_search = " ".join(url)

       with youtube_dl.YoutubeDL(ydl_opts) as ydl:
           print("Downloading audio now\n")
           ydl.download([f"ytsearch1:{song_search}"])

       for file in os.listdir("./"):
           if file.endswith(".mp3"):
               name = file
               print(f"Renamed File: {file}\n")
               os.rename(file, "song.mp3")

       voice.play(discord.FFmpegPCMAudio("song.mp3"), after=lambda e: print(f"{name} has finished playing"))
       voice.source = discord.PCMVolumeTransformer(voice.source)
       voice.source.volume = 0.10

       nname = name.rsplit("-", 2)
       await ctx.send(f"Currently playing: {nname}")
       print("playing\n")
  • fftools/ffmpeg_filter : pass vsync method through OutputFilterOptions

    1er avril 2024, par Anton Khirnov
    fftools/ffmpeg_filter : pass vsync method through OutputFilterOptions
    

    Do not read it from OutputStream directly.

    Will allow decoupling filtering from encoding in future commits.

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_mux.c
    • [DH] fftools/ffmpeg_mux.h
    • [DH] fftools/ffmpeg_mux_init.c