
Advanced search
Other articles (18)
-
Ajouter notes et légendes aux images
7 February 2011, byPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
XMP PHP
13 May 2011, byDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Les formats acceptés
28 January 2010, byLes 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 (...)
On other websites (5079)
-
FFMPEG: Black background after scaled and cropped
30 September 2015, by kenickyI am using scale and crop for creating a new video. The problem is the
nullsrc
’s size is greater than the input, leaving a blinking green background. How can I change the blinking green background to black?here is my code:
ffmpeg -y -i 1.mov -filter_complex "nullsrc=size=640x480 [base]; [0:v] setpts=PTS-STARTPTS, scale=320x480 [left]; [base][left] overlay=shortest=0:x=160" -c:v libx264 -t 5 output.mp4
-
kdenlive render settings for ipad [on hold]
27 September 2015, by user2761325I’m using kdenlive 9.6 on Ubuntu, and would like to render videos for display on an iPad.
I’ve tried using H.264 Profile but it won’t display on an iPad. I think this is because the profile (when I check using mp4info) is High@3.2, whereas per this link this should be max Main@3.1 to support iPad.
Does anyone have profile settings I can paste in to get it to render in Main/3.1 please?
-
Got black screen when recording screen by x11grab device
30 January 2014, by shawnzhuI'm trying to record video from a firefox run by
xvfb-run
but it always output nothing in the video file except black screen.Here's what I did:
start a firefox, open google.com:
$ xvfb-run firefox https://google.com
Then it will use the default display server number 99. I can see the display information by command
xdpyinfo -display :99
.A screenshot works very well by command:
$ xwd -root -silent -display :99.0 | xwdtopnm |pnmtojpeg > screen.jpg
Start using ffmpeg to record a video:
$ ffmpeg -f x11grab -i :99.0 out.mpg
When I play the video file
out.mpg
, there's black screen all the time.Is there any parameter I missed?