
Recherche avancée
Autres articles (63)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (9113)
-
FFMPEG : How to keep only upper half of image ?
4 août 2020, par VicI would like to keep only upper half of the image in a video. How to do that ? The original video is 2048x2048 pixels. I would like a 2048x1024 resolution video with the upper half of the original.
If I enter the following :


ffmpeg -y -i in.avi -vf v360=fisheye:equirect:ih_fov=180:iv_fov=180,transpose=1,crop=in_w:in_h/2:0:0 -c:a copy out.avi



then I get a 2048x2048 video where the upper half is black and the bottom is correct (it is the upper half of the original)...
The original video is from a 180 degree camera. If I omit the crop part from the video filter, then I get the desired perspective, but bottom half of the image is not needed...


Log :


Input #0, avi, from 'in.avi': Metadata:
 encoder : Lavf55.48.100 Duration: 00:00:11.00, start: 0.000000, bitrate: 3821 kb/s
 Stream #0:0: Video: h264 (Main) (H264 / 0x34363248), yuvj420p(pc, bt709, progressive), 2048x2048, 3828 kb/s, 20 fps, 20 tbr, 20 tbn, 40 tbc
 Stream #0:1: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 8000 Hz, mono, s16, 128 kb/s Stream mapping: Stream #0:0 -> #0:0 (h264 (native) -> mpeg4 (native)) Stream #0:1 -> #0:1 (copy) Press [q] to stop, [?] for help [swscaler @ 0000027b3e1d5a40] deprecated pixel format used, make sure you did set range correctly Output #0, avi, to 'out.avi': Metadata:
 ISFT : Lavf58.49.100
 Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 2048x2048, q=2-31, 200 kb/s, 20 fps, 20 tbn, 20 tbc
 Metadata:
 encoder : Lavc58.99.100 mpeg4
 Side data:
 cpb: bitrate max/min/avg: 0/0/200000 buffer size: 0 vbv_delay: N/A
 Stream #0:1: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 8000 Hz, mono, s16, 128 kb/s frame= 220 fps= 32 q=31.0 Lsize= 2368kB time=00:00:11.00 bitrate=1763.8kbits/s speed= 1.6x video:2353kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.634127%



-
lavc/avcodec : Add HEVC Screen Content Coding Extensions profile
16 février 2023, par Linjie Fulavc/avcodec : Add HEVC Screen Content Coding Extensions profile
Described in HEVC spec A.3.7. Bump minor version and add APIchanges
entry for new added profile.Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com>
Signed-off-by : Fei Wang <fei.w.wang@intel.com> -
lavfi/vf_scale : use default swscale flags for scaler
4 août 2021, par Linjie Fulavfi/vf_scale : use default swscale flags for scaler
Currently the default swscale flags for simple filter graph is bicubic,
however for complex filter graph it uses bilinear as decleared in scale
filter.$ffmpeg -v verbose -i input.mp4 -vf format=yuv420p,scale=800x600 -an -f null -
[Parsed_scale_1 @ 0x7f86d2c160c0] w:1920 h:1080 fmt:yuv420p sar:0/1 -> w:800 h:600 fmt:yuv420p sar:0/1 flags:0x4$ffmpeg -v verbose -i input.mp4 -filter_complex format=yuv420p,scale=800x600 -an -f null -
[Parsed_scale_1 @ 0x7f8779e046c0] w:1920 h:1080 fmt:yuv420p sar:0/1 -> w:800 h:600 fmt:yuv420p sar:0/1 flags:0x2Use default swscale flags (bicubic currently) for scale filter.
Remove flags="bilinear" from vf_scale
Update the FATE refs
Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com>