Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (6)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (3448)

  • Block YouTube from source page when trying to download a video with youtube-dl

    18 mars 2018, par user3108268

    E.g. example.com/1 has a video hosted, you run youtube-dl example.com/1 and it all works fine, the video gets downloaded.

    E.g. example.com/2 also has a video, but it also has a YouTube trailer. If you run youtube-dl example.com/2 the hosted video gets completely ignored and only YouTube trailer gets downloaded.

    From what I see in the log is that the wanted local video playlist gets downloaded first and then ignored by getting overwritten by embedded YouTube playlist download.

    You can’t even get the url with --get-url or get format with --list-formats. It always prints the googlevideos URL for the YouTube trailer and lists only the YouTube trailer formats.

    I did manage to pull out the local video URL via --dump-pages and decoding the base64 encoded source. But the problem is that the URL contains a unique token each time the page example.com/2 is called, so passing the unique one-time video URL like e.g. example.com/2/video.php ?token=asdf to youtube-dl won’t download the video.

    So I figured somehow I need to bypass the YouTube trailer source and playlist when calling youtube-dl example.com/2 and trying to download local video and not the YouTube trailer.

  • I'm having an issue with my discord bot playing audio from a youtube url

    19 avril 2022, par Alex Graeca
    sync def hog():
channel = bot.get_channel(964971002289356893)
url = 'https://www.youtube.com/watch?v=GyRmkAfpCOM'
await asyncio.sleep(1)
voice_channel = bot.get_channel(int(964971002289356893))
vc = await voice_channel.connect()
#vc.play(discord.FFmpegPCMAudio('C:/Users/alexa/Downloads/hogrider.mp3'))
vc.play(discord.FFmpegPCMAudio(source='https://www.youtube.com/watch?v=GyRmkAfpCOM', executable='ffmpeg.exe'))
while vc.is_playing():
    await asyncio.sleep(5)
await vc.disconnect()


    


    It works fine with the audio file from my laptop, but I want to play it from a youtube link.
It gives me an error :
https://www.youtube.com/watch?v=GyRmkAfpCOM : Invalid data found when processing input

    


    Thank you in advance

    


  • How to use youtube-dl inside ffmpeg

    3 décembre 2022, par Dương Phương Nam

    I tried to record a live stream video by this code. I add that code inside render.cmd

    



    ffmpeg -i $(youtube-dl -f 95 -g https://www.youtube.com/watch?v=v2_knJ1RwlQ) -c copy render.ts

    



    but i got this error $(youtube-dl : No such file or directory

    



    anyone help me please