Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (97)

  • 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 (...)

  • 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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (7435)

  • Add text with FFMpeg drawtext at specific time

    17 avril 2017, par nbrogi

    I’m adding text to an animated GIF.

    I would like the text to appear at a specific time, though, and I’m unable to do that.

    This is what I have :

    ffmpeg -i image.gif -vf 'drawtext=textfile=/path/to/text.txt:x=0:y=0:fontfile=/path/to/font.ttf:fontsize=64:fontcolor=white:borderw=3:bordercolor=black:box=0'

    I tried different approaches, but nothing seems to work. I can manipulate timing for the video using things like -itsoffset 00:00:30, but not the text.

  • Most time effective web format for converting h.265

    29 avril 2020, par IamRichter

    So, I configured my ipcams to send event videos to a FTP server that saves it locally, and run a script that convert every video into something that can be opened in a generic browser, then send it to a S3 (I am using pyftpdlib + my modifications).

    



    But i don't think that I am doing it in the most effective way. On my computer (a fairly good laptop) it usually takes half the video playtime to convert into a mp4 using a generic ffmpeg command that i simple copy and paste from stackoverflow. I tried to look up the documentation, but i simple don't have the multimedia background to understand it.

    



    What would be the most time effective format and how to convert a raw h.265 video to it ?

    


  • Compare two audio files and detect out of sync time

    15 décembre 2016, par kostya572

    I have two very similar audio files, but second audio file is out of sync for several seconds. I allready used :

    ffmpeg -i audio1.wav -itsoffset 0.67

    If i use this solution everytime i need manualy check delay time.
    How can i make this operation automatically ? Is there any waveform comparing software that can detect at what second i need set "itsoffset" ? Thank you.