
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (105)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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 (...) -
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (11950)
-
Slow Video play in mobile devices
5 novembre 2015, par 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 avril 2012, par 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 mars 2021, par 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))
 };