Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (66)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (7738)

  • ffmpeg put logo on rtsp and send to youtube live

    7 juillet 2017, par ahmed_max

    I want to put it watermark logo on rtsp stream (from Hikvision IP camera) and send it live to YouTube.

    I use ffmpeg on Winddows and this code

    ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://username:pass@255.255.255.255/Streaming/Channels/101 -tune zerolatency -vcodec libx264 -t 12:00:00 -pix_fmt + -c:v copy -c:a aac -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/stream-key

    How i can put watermark over live camera and send to YouTube live ?

    I tried adding it

    -i watermark.png -filter_complex "overlay=10:10"

    but dont work.

  • ctx.voice_client.play not playing music — Discord.py

    15 février 2021, par SYCK playz

    Here I am trying to make a music bot. Currently my bot connects to the voice channel but doesn't play anything. ctx.voice_client.play does nothing, nor does it produce any errors.

    


    These have been my attempted trials, yet none work. What is the problem ?

    


    ctx.voice_client.play(source=discord.FFmpegPCMAudio('song0.mp3'))


    


    ctx.voice_client.play(source=discord.FFmpegPCMAudio('song0.mp3', executable='path/to/ffmpeg.exe'))


    


    ctx.voice_client.play(source=discord.FFmpegPCMAudio('song0.mp3', executable='path/to/ffmpeg.exe', before_options = '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', options = '-vn'))


    


    ffmpeg_options = {'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', 'options': '-vn'}
ctx.voice_client.play(source=discord.FFmpegPCMAudio('song0.mp3', executable='path/to/ffmpeg.exe', **ffmpeg_options))


    


  • How to extract audio with youtube-dl on Windows

    25 septembre 2023, par FlyingNimbus

    I want to extract audio from a video downloaded with youtube-dl on Windows. I got youtube-dl working, but am unable to extract the audio. This problem is caused due to not having the correct audio codes installed.

    



    When I try to extract audio it tells me the following :

    



    WARNING: unable to obtain file audio codes with ffprobe


    



    The youtube-dl manual says :

    



    -x -extract-audio    convert video files to audio-only files (requires ffmpeg or avconv and ffprobe or avprobe)


    



    How do I install ffprobe or ffmpeg ? Do I install this on Windows, or do I install this as a Python extension ?

    



    My OS is Windows 7.