
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (58)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (8016)
-
How to Speed Up Two-Pass Encoding ?
27 juillet 2017, par Matt McManisI have a
Video
file withAudio
,Subtitles
,Chapters
, andMetadata
.I removed
Audio
andSubtitles
with-an -sn
from-pass 1
and then inlclude them in-pass 2
.What about for
Chapters
andMetadata
? And how do you applyTurbo
to-pass 1
?Is there anything more that can be done ?
I have a script that will convert
mpg
tomp4
. I’ve sorted it with linebreaks so it’s easier to read.Pass 1
"C:\Videos\example.mpg"
-vcodec libx264
-preset medium -b:v 2500K -pix_fmt yuv420p -qcomp 0.8
-vf scale="trunc(iw/2)*2:trunc(ih/2)*2"
-pass 1
-map 0:v:0? -an -sn
-threads 8
"C:\Videos\example.mp4"Pass 2
ffmpeg -y -i
"C:\Videos\example.mpg"
-vcodec libx264
-preset medium -b:v 2500K -pix_fmt yuv420p -qcomp 0.8
-vf scale="trunc(iw/2)*2:trunc(ih/2)*2"
-pass 2
-acodec aac
-b:a 320k
-af volume=1.2
-map 0:v:0? -map 0:a:0? -map 0:s? -c:s copy -map_metadata 0
-threads 8
"C:\Videos\example.mp4" -
avfilter/vsrc_gradients : make rotation always continuous if speed changes
3 décembre 2023, par Paul B Mahol -
ffmpeg : packet size 2073600 expected frame_size 4147200
18 avril 2020, par mranaI have total 96 videos. I have converted most of videos using ffmpeg, 
but for some videos its giving me some error. 
As a first step I deinterlaced the video using the following command :



ffmpeg -video_size 1920x1080 -r 25 -pixel_format yuv422p -i stockholm.yuv -vf yadif stockholm_deInt.yuv




And I am getting the following error :





[rawvideo @ 0x7fa144008c00] Invalid buffer size, packet size 2073600 < expected frame_size 4147200

 Error while decoding stream #0:0 : Invalid argument
 frame= 187 fps=3.7 q=-0.0 Lsize= 757350kB time=00:00:07.48 bitrate=829440.0kbits/s

 video:757350kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : 0.000000%




When I try to get the info about the video (
ffprobe stockholm.yuv
) I get the following :




[IMGUTILS @ 0x7fff5bac8140] Picture size 0x0 is invalid

 [IMGUTILS @ 0x7fff5bac8150] Picture size 0x0 is invalid

 [rawvideo @ 0x7fbcb200da00] Could not find codec parameters for stream 0 (Video : rawvideo (I420 / 0x30323449), yuv420p, -4 kb/s) : unspecified size

 Consider increasing the value for the 'analyzeduration' and 'probesize' options
 stockholm.yuv : Operation not permitted`




Does anyone have any idea ?