
Recherche avancée
Autres articles (112)
-
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 ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (8370)
-
high CPU usage with ffmpeg and youtube live stream
21 mai 2018, par Sergio santaI have a problem with high CPU usage using FFmpeg to stream my videos via youtube.
my main purpose is to stream loop videos as long as possible but after 6 hours the stream stops and the CPU usage was almost 90%.the code I’m using
ffmpeg -re -stream_loop -1 -i video.mp4 -vcodec libx264 -preset veryfast -maxrate 2500k -bufsize 3368k -vf "format=yuv420p" -g 60 -acodec libmp3lame -b:a 198k -ar 44100 -f flv -s 1280x720 -max_muxing_queue_size 400 rtmp://a.rtmp.youtube.com/live2/xxxxxxxxx
My VPS details :
1 vCPU, 3 GB memory -
FFMPEG how to record aac codec audio same time with wideo ?
12 décembre 2017, par Gomi OdabaşıoğluI am trying to use FFMPEG console tools effectively. Now I can record video and audio same time but my issue is audio is delaying. I use following code :
C:\Users\gomid_000\Desktop\ffmpeg.exe -y -f dshow -i audio="Stereo Mix (Realtek High Definition Audio)" -f gdigrab -show_region 1 -framerate 60 -i desktop -map 0 -map 1 -c:v libx264 -preset ultrafast -pix_fmt yuv420p C:\Users\gomid_000\Desktop\out.mp4 -threads:1 4
I do not know if I can automatically sync them together and prevent delay. Is it better to use AAC codec ? If it is how can I do that ?
-
Best Setting for High Quality live Stream Encoding with NVENC_HEVC
23 août 2021, par AquilaCoderWe are using Quadro RTX 4000 for live stream transcoding, with default settings


ffmpeg -v warning -hwaccel_device 0 -hwaccel cuda -hwaccel_output_format cuda -c:v h264_cuvid -deint 2 -drop_second_field 1 -i udp://239.101.0.5:1234 -c:a libfdk_aac -b:a 128k -ar 48000 -c:v hevc_nvenc -b:v 4000k -g 25 -f mpegts udp://192.168.2.7:1234?pkt_size=1316



Video Resolution : 1920x1080
Driver Version : 470.42.01 CUDA Version : 11.4
OS : Ubuntu 18.04


guide us to achieve best compression with high quality.


Thanks in advance