
Recherche avancée
Autres articles (103)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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, parMultilang 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. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (12034)
-
FFMpeg : Images to Video take more time
24 mars 2015, par Butani Vijayi 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 OliveiraI 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