Recherche avancée

Médias (91)

Autres articles (112)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (12122)

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

    


  • 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 : 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 ?