
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (21)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (4684)
-
A ffplay Error :"Failed to set value 'yuv420p' for option 'pix_fmt' : Option not found"
3 novembre 2023, par DavisTaoI was trying to play a video by ffplay. Here’s my command :


ffplay -f rawvideo -pix_fmt yuv420p -video_size 640x360 Resources/video.h264


but I got this error :

Failed to set value 'yuv420p’ for option 'pix_fmt: Option not found


So l used another command to make the video playing correctly, and this is the command :


ffplay -f rawvideo -video_size 640x360 Resources/video.h264


I wonder why the first command reported the error, because I used
ffplav -pix_fmts
and found that yuv420p is supported.

By the way the pixel format of the video file is yuv420p exactly.


-
How to fix error FFmpeg "Error during encoding : failed to allocate memory (-4)"
22 avril 2022, par SCAR101I have a problem with FFmpeg encoding. It can write for an hour or two hours or 5 minutes, and then he gives out error :
[h264_qsv @ 000001a47094f340] Error during encoding: failed to allocate memory (-4)
. What am I doing wrong ? Here is the FFmpeg string :

-y -f dshow -video_size 1920x1080 -rtbufsize 702000k -framerate 25 
-i video="Decklink Video Capture":audio="Decklink Audio Capture
-vf "drawtext=fontfile=C\\:\\\\Windows\\\\Fonts\\\\arial.ttf:fontsize=36:fontcolor=red:text='%{localtime}'" 
-s 720x540 -pix_fmt yuv420p -c:v h264_qsv 
-preset veryfast -b:v 512k -acodec libmp3lame 
-b:a 96k -ac 2 -ar 44100 D:\Input_1\2022\4\20\Input_1_20.04.2022_08.16.31.mkv



Computer Specifications : Core I5 11600, 16Gb.


-
How to fix error "Encoding Failed" using FFMPEG ?
17 août 2021, par Irshad KhanI am using
FFMPEG
for convertingmp4
tom3u8
format on anUbuntu
local machine. But I am facing an errorEncoding Failed
.

My controller code is :


FFMpeg::open(public_path()."/uploads/".$filename)
 ->exportForHLS()
 ->addFormat($lowBitrate)
 ->addFormat($midBitrate)
 ->addFormat($highBitrate)
 ->toDisk(env('APP_ENV'))
 ->save(public_path().'/converted/adaptive_steve.m3u8');



The error is :




Config file is




How can I solve this ? Thanks