
Recherche avancée
Autres articles (82)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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.
Sur d’autres sites (8731)
-
Revision fe74c4286a : Rename quantize_sse2_intrinsics.c The only reason for the _intrinsics part of t
24 avril 2013, par JohannChanged Paths :
Add /vp8/encoder/x86/quantize_sse2.c
(from /vp8/encoder/x86/quantize_sse2_intrinsics.c
:f71e5246f214353fea1d14a1d10fcc38859db58d)
Delete /vp8/encoder/x86/quantize_sse2_intrinsics.c
Modify /vp8/vp8cx.mk
Rename quantize_sse2_intrinsics.cThe only reason for the _intrinsics part of the file name was for the
interim period where only one of the functions was redone and the base
file name was the same.Change-Id : I7851154f1633d48821bee885b1cadb2148e65a23
-
ffmpeg how to convert an existing mp4 to mpeg-4 part 14 ?
30 novembre 2022, par MichaI need a video to comply with the following specifications


- 

- Container : MOV or MP4 (MPEG-4 Part 14), no edit lists, moov atom at the front of the file.
- Audio codec : AAC, 48khz sample rate maximum, 1 or 2 channels (mono or stereo).
- Video codec : HEVC or H264, progressive scan, closed GOP, 4:2:0 chroma subsampling.
- Frame rate : 23-60 FPS.
- Picture size :

- 

- Maximum columns (horizontal pixels) : 1920
- Required aspect ratio is between 0.01:1 and 10:1 but we recommend 9:16 to avoid cropping or blank spaces.






- Video bitrate : VBR, 25Mbps maximum
- Audio bitrate : 128kbps
- Duration : 15 mins maximum, 3 seconds minimum
- File size : 1GB maximum




















I cannot get to work. So far I have tried the following :


ffmpeg -i input.mp4 -c:v libx264 -aspect 16:9 -crf 18 -vf "scale=iw*min(1280/iw\,720/ih):ih*min(1280/iw\,720/ih),pad=1280:720:(1280-iw)/2:(720-ih)/2" -fpsmax 60 -preset ultrafast -c:a aac -b:a 128k -ac 1 -pix_fmt yuv420p -movflags +faststart -t 59 -y output.mp4


I always end up with
MPEG-4 Part 10
.

-
FFMPEG - Can you overlay part of a video with a couple of images ?
22 août 2017, par AdamI need to add an overlay a video and I was wondering if there is an easy way to do this with FFMPEG.
I have a set of images (a banner and a portrait) which I would like to overlay at the bottom of my video for part of the duration of the video. For example, after about 5 seconds I would like the overlay to appear, and then about 5 seconds before the end of the video I would like to have the overlay go away.
Is this possible using FFMPEG command line options ?