Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (81)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La 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, par

    PHP 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, par

    MediaSPIP 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 Thomas

    I’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 :

    enter image description here

    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 AlexZheda

    It 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 times atempo=.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 Hawary

    I 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.