
Recherche avancée
Autres articles (103)
-
XMP PHP
13 mai 2011, parDixit 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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (13017)
-
ffmpeg : Add an option "qsv_device" to choose proper node for QSV child device (vaapi...
5 janvier 2017, par Zhengxuffmpeg : Add an option "qsv_device" to choose proper node for QSV child device (vaapi or dxva2)
Reason : For some cases, such as 2 or more graphics cards existing, the
default command line may fail because ffmpeg does not open the correct
device node :
ffmpeg -hwaccel qsv -c:v h264_qsv -i test.264 -c:v h264_qsv out.264
Let user choose the proper one by running like below :
ffmpeg -hwaccel qsv -qsv_device /dev/dri/renderD128 -c:v h264_qsv \i test.264 -c:v h264_qsv out.264
Signed-off-by : ChaoX A Liu <chaox.a.liu@gmail.com>
Signed-off-by : Huang, Zhengxu <zhengxu.maxwell@gmail.com>
Signed-off-by : Andrew, Zhang <huazh407@gmail.com>
Signed-off-by : Mark Thompson <sw@jkqxz.net> -
avcodec/videotoolboxenc : inherit profile from AVCodecContext
9 juin 2023, par Zhao Zhili -
H264 profile change using FFMPEG
16 octobre 2015, par KartheeI have H264 Stream with following details
video stream type : AVC
resolution : 640x368
profile:level : High:4.0
aspect ratio : 40x23(1:1)
chroma format : 4:2:0
interlaced : no
frames count : 15
duration : 00:00:02.800
frame size max : 80 088
avg : 14 538
avg/max (I) : 28 361 / 80 088
avg/max (P) : 2 444 / 3 196
avg/max (B) : 0 / 0
min : 1 880
framerate declared : 5.000
real : 5.000
bitrate type : VBR
bitrate declared : 1 259 968
bit allocation max : 1 126 640
avg : 581 520
min : 124 000is it possible to convert into Baseline profile using FFMPEG or other tools, or is there a way to do myself ?
basic idea is to stream this video to android devices.