Recherche avancée

Médias (0)

Mot : - Tags -/xmp

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (105)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (14234)

  • Convert png to mp4

    9 septembre 2018, par user3073118

    I have a lot of png files that I want to convert to mp4 in R.

    I used to convert it to .gif using ImageMagick, then converting it using a free online website from .gif to MP4.

    library(magick)
    system(command = "convert -delay 70 '/Users/Desktop/figures/*.png' '/Users/Desktop/figures/animation.gif'")

    But the current file size is too big, such that even converting it to .gif takes hours.

    Is there a way I can convert it directly from png to mp4 in R ?

    I tried to look up ffmpeg but I have a MAC and installing it is a little confusing...

    Thanks !

  • ffmpeg - scaling and stacking 2 videos ?

    25 mai 2016, par Gambit2007

    I have 2 inputs and i want to scale, crop and put them on top of each other at the same time. My command should look something like this :

    ffmpeg -i input1 -i input2 -filter_complex crop=10000:5000:1000:0,scale=3840:1536 vstack output.mp4

    I know i need to use chaining (?) but i tried to look it up online and couldn’t really get it to work.

    So what would be the correct syntax the scale and crop both inputs and then put them vertically on top of each other while using ’-filter_complex’ only once ?

    Thanks !

  • Is there a FFMPEG C# Wrapper with multiple filters ?

    7 juin 2021, par AfricanMamba

    Does anyone happen to know if FFMPEG or any other sources has a wrapper that I can use in C#/.NET to run certain filters ? Filters that I am trying to run on different audio files in my program include silenceremove, silencedetect, volumedetect, and etc. I want to avoid using just the .exe file that I already have when implementing this in my program.

    


    I have looked through several forums and online resources and found one called MediaTookKit, but it lacks the filters that I am attempting to use. If anyone knows of one that already exists or can provide me with steps to make my own wrapper using certain FFMPEG filters, it would greatly help.