Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (84)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (12421)

  • My discord.py music bot fails with "ffmpeg not found"

    17 avril 2022, par ThatNoClueDude

    I am using repl.it to host my Discord.py music bot
It fails with an error saying "ffmpeg is not found"
I used multiple ways to fix the error

    


    npm install ffmpeg-static in shell is my first way how i tried to fix the problem, but it did not do anything.

    


    Even if i do any way, repl.it will still give the error ffmpeg not found.
Can someone please tell any way to fix this issue ??

    


  • avformat/hls : Fix Youtube AAC

    6 avril, par Michael Niedermayer
    avformat/hls : Fix Youtube AAC
    

    Fixes : Ticket11435
    Fixes : yt-dlp -f 234+270 https://www.youtube.com/live/l8PMl7tUDIE

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/hls.c
  • ffmpeg stream to youtube has no sound with bigger mp4 file

    6 janvier 2023, par Alessandro Oliverio

    I want to stream to Youtube from a Ubuntu VPS and it works, but when i set a bigger .mp4 file (220mb) the livestream on Youtube has no sound.

    &#xA;

    I tried to split the .mp4 file to 5s parts and concat them but without success.

    &#xA;

    My settings are :

    &#xA;

    FPS="30"                                       # FPS de la vid&#xE9;o en sortie&#xA;QUAL="superfast"                                  # Preset de qualit&#xE9; FFMPEG&#xA;YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2"  # URL de base RTMP youtube&#xA;&#xA;              # Source UDP (voir les annonces SAP)&#xA;KEY="###-my-key-###"                                     # Cl&#xE9; &#xE0; r&#xE9;cup&#xE9;rer sur>&#xA;VSOURCE="parts/files.txt"&#xA;ASOURCE="1m.mp3"&#xA;&#xA;ffmpeg \&#xA;    -stream_loop -1 -f concat -i "$VSOURCE" -deinterlace \&#xA;    -stream_loop  -1 -i "$ASOURCE" \&#xA;    -vcodec libx264 -pix_fmt yuv420p -preset $QUAL -r $FPS -g $(($FPS * 2)) -b:v $VBR \&#xA;    -acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a 712000 -bufsize 512k \&#xA;    -f flv "$YOUTUBE_URL/$KEY"&#xA;

    &#xA;

    Hope someone can help me :)

    &#xA;

    I tried to split the .mp4 file to 5s parts and concat them but without success.

    &#xA;