Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (80)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

Sur d’autres sites (9152)

  • FFMpeg : Images to Video take more time

    24 mars 2015, par Butani Vijay

    i am using FFmpeg library project as provided in This Link.

    Actually i want to create video from bunch of images.

    i am using following command :

    ffmpeg -framerate 1/5 -i img%d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4

    command takes more time to create video. what can i do to improve speed ?

  • How to generate an audio file from N concatenated audio samples separated by certain time intervals ?

    25 mars 2020, par Antonio Oliveira

    I have an Android application that simulates a Drum Kit where the user is able to "record" their performances.
    Currently this recording consists of store in a .json file which audio sample was played and the time that it took between the previous and the current note, something like this :

    [
       {
           drumkit: 'snare',
           time: '0'
       },
       {
           drumkit: 'kick',
           time: '5'
       },
       {
           drumkit: 'splash',
           time: '3'
       }
       {
           drumkit: 'snare',
           time: '0'
       },
       {
           drumkit: 'kick',
           time: '2'
       },
       {
           drumkit: 'crash',
           time: '0'
       }

    ]

    That said, now I’m looking for a way to generate an audio file (mp3 for example) from that record, since I already have the audio files in the app and also the logical sequence of the recording.

    I tried to follow the approach shown in this question (https://stackoverflow.com/a/656302).
    The merging of audios worked, but in this way the next audio can only be placed after the previous one ends, making it impossible for two (or more) audios to be played at the same time. It is also not possible to define the time that separates the audios.

    The ffmpeg lib seems to be good for dealing with this type of problem, there is even a version for Android.
    But I don’t know how to do this using it.

    Would anyone have a suggestion on how to solve the problem ? (Using or not ffmpeg)

  • ffmpeg : Make letters appear one at the time, like a typewriter

    10 octobre 2020, par Davide Vitiello

    How can I show letters one at the time using FFMpeg, I'm talking something about this :
enter image description here

    


    Thank you.