
Recherche avancée
Autres articles (94)
-
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 ;
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (15666)
-
FFmpeg - How to scale and then drawtext ?
19 janvier 2015, par vanderjasI’m trying to scale and crop a video and then apply some text over the top.
I’m able to achieve each of these successfully using the following filters :
Scale & Crop
-vf scale=-1:640,crop=640:640:0:0
Draw Text
-vf drawtext="fontfile=Gotham-Book.ttf: text=TextHere:fontsize=72:fontcolor=gray@0.25:x=10:y=10”
I presume I need to use some kind of filter complex but I am not having any luck.
Can anyone help ?
Thanks in advance !
-
Quantization property in CUVID
19 octobre 2016, par mkreddyPlease correct me if my understanding was wrong regarding
qscale
in ffmpeg.In ffmpeg H264 decoder has
qscale_table
which hold the values ofqp
for each macro block.Is there any such table/matrix in CUVID to know the
qscale
values ? If not, please suggest me how can I construct one such matrix for each macro block.Thanks in advance.
-
ffmpeg : merge avi and wav files into flv not working
1er juillet 2014, par gautam.dasI’m trying to merge an .avi and .wav file to .flv using ffmpeg-php.
Here is my code :
exec("ffmpeg -i $audio_path -i $video_path -vcodec flv -acodec copy
$target_path", $op, $result);But the output file is of 0 bytes and it gives :
"Could not write header for output file #0 (incorrect codec parameters ?):
Invalid data found when processing input"When I use
-vcodec
as copy, it merges sucessfully.Thanks in advance.