
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (52)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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, parUne 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 2013Puis-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 Niedermayeravformat/hls : Fix Youtube AAC
Fixes : Ticket11435
Fixes : yt-dlp -f 234+270 https://www.youtube.com/live/l8PMl7tUDIESigned-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
ffmpeg stream to youtube has no sound with bigger mp4 file
6 janvier 2023, par Alessandro OliverioI 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.


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


My settings are :


FPS="30" # FPS de la vidéo en sortie
QUAL="superfast" # Preset de qualité FFMPEG
YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube

 # Source UDP (voir les annonces SAP)
KEY="###-my-key-###" # Clé à récupérer sur>
VSOURCE="parts/files.txt"
ASOURCE="1m.mp3"

ffmpeg \
 -stream_loop -1 -f concat -i "$VSOURCE" -deinterlace \
 -stream_loop -1 -i "$ASOURCE" \
 -vcodec libx264 -pix_fmt yuv420p -preset $QUAL -r $FPS -g $(($FPS * 2)) -b:v $VBR \
 -acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a 712000 -bufsize 512k \
 -f flv "$YOUTUBE_URL/$KEY"



Hope someone can help me :)


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


-
Converting images to youtube supported video using ffmpeg
15 février 2014, par Kaushik DBI'm trying to generate a 1.5hr video for uploading to
Youtube
usingffmpeg
with a 1280x720 screenshot and a audio file.
I've tried
but it takes a long time forYoutube
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