
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (81)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (11949)
-
Circular movie overlay in FFmpeg
1er mars 2017, par ThomasI’m trying to create a circular movie overlay using ffmpeg. So far I was able to make a square circular movie overlay using the following command :
ffmpeg -i bg.mp4 -vf "movie=smaller.mp4[inner];[in][inner] overlay=92:460 [out]" final.mp4
I want to create something like this :
Can someone help me out ?
Thanks a lot !
-
Is it possible to slow down the audio more than 4 times in ffmpeg ?
21 mars 2020, par AlexZhedaIt appears that ffmpeg does not allow to slow a video down more than 4 times.
ffmpeg -i in.mp4 -filter_complex "[0:a]atempo=.5,atempo=.5,atempo=.5,asetpts=N/SR/TB[aa];[0:v]setpts=8*PTS[vv]" -map "[aa]" -map "[vv]" out_x8.mp4
I am getting
Too many packets buffered for output stream 0:0.
error.
Whenever I do only 2 timesatempo=.5
, the same command works.
Why is that so and are there any workarounds for that ? -
Can non-standard sampling rates be used with AAC encoding ?
19 novembre 2019, par Ahmed HawaryI am trying to up-sampling an M4a file from 41000 to another non-standard sampling rate let’s say 5000.
ffmpeg -i audio.wav -ar 5000 audio_.wav
This worked fine with wav files whoever it didn’t work with m4a. Any ideas why ?
If non-standard sampling rates don’t work with AAC I need any documentation or reference for that.