Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (100)

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

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11826)

  • H264 Encoders other than ffmpeg x264

    5 septembre 2016, par 0pcl

    The iPhone app I am working on captures images in series within certain user-defined time interval, I am looking for a way to combine these images into H264 encoded videos. I have done some research on Google, it looks like I will have to use something like ffmpeg/mencoder on iPhone ? (Also found someone ported ffmpeg to iPhone, ffmpeg4iPhone)

    However, I found that x264 is under GPL license, and requires me to open source my project if I use ffmpeg. Also found some people suggested to use Ogg Theora, but I will need to port it to iPhone if I use it. (Which I am not sure how to do it now).

    Is there any workaround for this ? Any ideas ? Thanks.

  • how can stop stream after start stream with ffmpeg php ?

    8 octobre 2017, par kenano staroo

    I’m attempting to run the following command in PHP (on Ubuntu) :

    it is start button
    start

    <?php
    if (exec("ffmpeg -i input.avi output.avi >/dev/null 2>/dev/null&"))
     { echo "Success"; }
     else { echo "No good"; }

    so after start how i can kill-stop this with -php code

    Any ideas on this be working for stop it ? Thanks.

  • Identify a specific frame number of a video file

    23 février 2017, par James Crampton

    I have a video file from which I’ve extracted a specific frame to analyze. However, I want to know what the frame number of this frame is.
    I can’t seem to find anything. I’ve had a look at ffmpeg showinfo, but that doesn’t seem to work.
    I’ve also looked into exifread, which produced information about the frame - except for the frame number.

    Any ideas ?