Recherche avancée

Médias (1)

Mot : - Tags -/ticket

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)

  • Discord Bot Not Playing Audio When Using YouTube-dl and FFmpeg

    5 novembre 2020, par John Henry 5

    I'm trying to get a bot to join a voice chat and then play the audio in a youtube url. This is the code I have :

    


    @client.command() async def play(ctx):
    channel = ctx.message.author.voice.channel
    voice_client = await channel.connect()

    opts = {'format': 'bestaudio'}
    FFMPEG_OPTIONS = {'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', 'options': '-vn'}
    with youtube_dl.YoutubeDL(opts) as ydl:
        song_info = ydl.extract_info('video', download=False)
        URL = song_info['formats'][0]['url']
    voice_client.play(FFmpegPCMAudio(URL, **FFMPEG_OPTIONS))


    


    No errors are thrown but it just says [youtube] video : Downloading webpage

    


  • Cannot download youtube by ffmpeg

    3 mai 2022, par itil memek cantik

    Err when a youtube video was tried in such

    


    $ ffmpeg  -i 'https://youtu.be/NFTZbSU7X9I' -c copy  t.mp4


    


    it echos :

    


    https://youtu.be/NFTZbSU7X9I: Invalid data found when processing input


    


    What actually the cause and how to solve ?
thanks in advance

    


  • FFMPEG RTSP stream to Youtube, am i doing everything right ?

    5 août 2018, par F O X

    My htop processes

    Hello, i’m currently streaming my camera ip to a youtube, almost everything is okey but i just wonder if i’m doing everything right, as you can see at the image with just one stream there are two huge processes running splitted into several smaller once, shouldn’t be just one process running or at least not so many of them ?

    Also is my ffmpeg command fine for what i’m doing or should i add/delete something ?

     !/bin/bash

    DATETIME=date +%Y%m%d%H%M
    DATE=date +%Y%m%d

    echo="WE BE RUNNING !"

    while :

    do

    echo ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://192.168.1.22:555/11 -tune zerolatency -vcodec libx264 -pix_fmt + -c:v copy -c:a aac -strict experimental -b:v 1000k -maxrate:v 400k -minrate:v 300k -f flv rtmp://YOUTUBE-ID-STREAM

    done

    EOF

    I’m doing it on Ubuntu Mate (16.04) with Raspberry 3 B+

    Thanks.