
Advanced search
Medias (1)
-
Richard Stallman et le logiciel libre
19 October 2011, by
Updated: May 2013
Language: français
Type: Text
Other articles (36)
-
Les tâches Cron régulières de la ferme
1 December 2010, byLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Contribute to translation
13 April 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
MediaSPIP version 0.1 Beta
16 April 2011, byMediaSPIP 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 (...)
On other websites (6218)
-
Slow Video play in mobile devices
5 November 2015, by Rahul Chipadi have implemented video play functionality using html5 video tag.In web video play instantly but in mobile it takes to 15-20 seconds to play video over 3g/Wifi network
i have searched for this issue and tried partial content request script in php but partial content request not working in browser.
we have using ffmpeg for video encoding and akamai as cdn.ffmpeg -i '20102707.mp4' -y -f mp4 -vcodec libx264 -pix_fmt yuv420p -vprofile baseline -preset slow -b:v 158035 -r 12/1 -vf "scale=480:trunc(ow/a/2)*2" -acodec libfaac -b:a 18320 -ar 16000 -ac 2 '20102707_VIDEO_MEDIUM_H264.mp4' 2>&1
i have tired different bit rate and frame rate for video encoding but all taking more time to play
Any idea?
-
How to play H.264 video in a win32 window?
4 April 2012, by parvezI came across a H.264 video which i would like to play in my c++ application. Could anyone suggest what could be the easiest way of doing it? Or What library can be used for the purpose.
Thanks in advance..
-
How To Make Discord Bot Play YouTube URL
6 March 2021, by ivFizI'm new to this and I wonder if there's a way I can make my bot play specific YouTube URL
so when I type s1 the bot join the room and play that URL


if (message.content == "s1") {
 if (!message.member.voice.channel) return message.reply("You have to be in a VoiceChannel");
 message.member.voice.channel.join().then(VoiceConnection => {
 VoiceConnection.play("https://youtu.be/~~~~").on("finish", () => 
 VoiceConnection.disconnect());
 message.reply("done");
 }).catch(e => console.log(e))
 };