Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (53)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (7694)

  • Run ffmpeg command line error in android

    27 février 2014, par user3361063

    When i run this code :

    String cmd = mFfmpegInstallPath+" -f image2 -i "+Environment.getExternalStorageDirectory()+"/ffmpeg/img%03d.png "+Environment.getExternalStorageDirectory()+"/tmp/out.mp4";
    Process p = Runtime.getRuntime().exec(cmd);

    I got a error :

    Working Directory : null Environment : null

    So how to run ffmpeg command line in android ?

  • command line closes too fast inside python using ffmpeg

    18 février 2014, par user3012914

    I am using python to create a Macro Module inside MevisLab environment. I wanted to use ffmpeg in command prompt inside Python. The Problem is the command prompt closes too fast that i couldnt read while executing ffmpeg.

    My code

     t = 'ffmpeg -r'+str(ctx.field("FrameRate").value)+'-f image2 -pix_fmt yuv44p -s 1920x1080 -i'+path+'%0d.png -vodec libx264 -crf 15'+path+'.mp4'

    os.system(t)
  • Compress video with ffmpeg programatically - i.e. using C libraries instead of command line or wrapper

    29 décembre 2014, par Mick

    I am trying to find some examples or guidelines that help show how to compress a video programatically using ffmpeg API’s (i.e. the C API’s not the command line).

    In other words I would like to achieve the equivalent of the following ffmpeg command line :

    ffmpeg -i inoutVideo.mp4 -strict experimental -acodec aac CompressedVideo_aac.mp4

    but using the appropriate API calls from a C program.

    I can already do this by creating a wrapper around the ’ffmpeg.c’ program but I am trying to understand how to achieve this with the C libraries directly.

    I realise I can simply(!) read the source code of ffmpeg.c to see what it does, but I was hoping for something that either provides and overview or a specific example for video compression.

    Any pointers gratefully appreciated.