
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (39)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (6425)
-
Install ffmpeg on php 5.6.21, xamp 3.2.2
13 novembre 2016, par Mr BootaI recently install xampp 3.2.2 server on my windows 8.1 32bit machine, And want to install ffmpeg on it, I have googled already and stackoverflow, And tried every single method, but no one success, please guid me how can I Install
-
Deal with dropped frames in live stream
8 juillet 2020, par arunk2We encode a stream (RTMP) into HLS with ffmpeg. During the conversion we observe a lot of variation in fps. We could trace it back to the 'frames' dropped at source (during video upload from tools like OBS). This introduces a bad CX during playback of generated HLS - like buffering/getting-stuck.


Question :
What is the typical way to handle dropped frames in live stream graciously - like duplicating previous frames or other means ? Pointers to related resources ?


-
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)