Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (83)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

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

  • How to force ffmpeg to use all the images in a directory ?

    7 septembre 2016, par Learnaholic

    I have a directory of images, (*.png)s, and I am trying to make a movie out of them using ffmpeg.

    The images are named in multiple of 50, so I have : images_0000.png, then, images_0050.png, then images_0100.png, then images_0150.png, etc, all the way to images_4950.png, and so I have 100 images in total.

    I use the following command to make my movie :

    ffmpeg -r 10 -pattern_type glob -i '*.png' -c:v libx264 movie.mp4

    This works fine to make the movie, however when I play it, does not look like every image is being used. That is, if I step through frame by frame, I see that some images are not being displayed, and it looks like they were skipped. (I know because every image has it’s name written on it).

    So, how do I force ffmpeg to use every image in the directory, such that every step forward in the movie, will show the corresponding image ?

    Thanks.

    EDIT : Here is the complete screen dump of the command :

    enter image description here

  • .NET Wrapper ffmpeg convert to mp4 set size to 1920 x 1080

    1er août 2020, par Robert

    I in my application written in .NET Core I use ffmpeg to convert movie from 3gp to mp4.

    


    var conversionOptions = new ConversionOptions
{
   MaxVideoDuration = TimeSpan.FromSeconds(60),
   VideoAspectRatio = VideoAspectRatio.R16_9,
   VideoSize = VideoSize.Hd1080,
   AudioSampleRate = AudioSampleRate.Hz44100,
   //  CustomWidth = 200
};
                    
await ffmpeg.ConvertAsync(inputFile, outputFileMp4, conversionOptions);


    


    Convertion works fine, but my source movie is from mobile phone. Its frame size is 1920 x 1080 but the movie is higher than wider.
After conversion with above code the frame is the same but the movie is cuted and it is wider than taller.
I wanted to have original size

    


  • Revision 109827 : Ajout d’options sur les saisies, et y++ - checkboxes et radios : ...

    11 juin 2018, par nicolas.dorigny@… — Log

    Ajout d’options sur les saisies, et y++
    - checkboxes et radios : pouvoir désactiver certains choix (disable_choix)
    - checkboxes : nombre maximal de choix possibles (maximum_choix)
    - textarea : nombre maximal de caractères (longueur_max)
    avec une vérification côté client (navigateur) en JS
    TODO :
    - vérifications en PHP
    - traduire la chaine en JS dans saisies/textarea.html, ligne 34 (chaine de texte avec une variable), pour l’instant en français "en dur"