Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (52)

  • 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 ;

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9354)

  • 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;

  • Converting images to youtube supported video using ffmpeg

    15 février 2014, par Kaushik DB

    I'm trying to generate a 1.5hr video for uploading to Youtube using ffmpeg with a 1280x720 screenshot and a audio file.
    I've tried
    but it takes a long time for Youtube to process the video. how can i minimize the processing time.

    ffmpeg -loop 1 -r 2 -i input.png -i audio.ogg -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p output.mkv