
Recherche avancée
Autres articles (35)
-
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 (...) -
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 ) (...)
Sur d’autres sites (6792)
-
How to get the highest resolution, dividable by 2 that contains the video without black borders after rotation ?
22 avril 2016, par Vitalis HommelI rotate a video. Then my goal is to get the biggest resolution, dividable by 2 that contains the video without black borders.
to
My approach.
ffmpeg -ss 6 -i "t.MP4" -ss 0 -t 5 -vf "rotate='8*PI/180:ow=hypot(iw,ih):oh=ow', scale='1920:1920', crop='1920:1080:0:420'" -c:v libx264 -crf 28 -acodec copy "t2.MP4"
But that does not meet the criteria. Which command do I need ?
-
output video has black..whats wrong in this command ?
24 décembre 2022, par vikrami want add text over video and i am using ffmpeg android lib but edited successfully but output video shows me black screen only


String addtextcommand[] = {
 "-i",
 inputpath,
 "-strict",
 "-2",
 "-vf",
 "drawtext=text=\'onLine1\': fontcolor=white", "-map", "0:a",
 "-codec:v", "libx264", "-codec:a", "copy",
 output
};



-
how can I fix a video which has a smaller width and black sides when a pad is added with ffmpeg
24 mai 2019, par eliud nyamaiim aplying a pad to a video but the video is displaying with black sides after i add a pad with ffmpeg instead of being full screen.can somebody help me correct it or give me an alternative of using a pad
ffmpeg is on an ubuntu server
ffmpeg -i IMG_9079.mov -ss 00:00:20.0 -vcodec libx264 -vf "pad=width=1280:height=1280:x=0:y=280:color=white" -acodec copy -t 20 output_withpad.mov
I expect the video to be full screen with a pad at the bottom