
Recherche avancée
Autres articles (73)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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
Sur d’autres sites (4574)
-
Is it possible to play an output video file from an encoder as it's being encoded ?
16 août 2022, par jAckOdEI have a video file, and I need to encode it as H264/AVC and feed to client via HTTP. What i need is that i player at client side can play back the video as it is being encoded.



AFAIK, To enable player to play as the video is downloading, "moov atom" have to be placed at the begnning of the video file. However, encoders (ex : ffmpeg) always write "moov atom" at the end of file after it completes encoding.



Is there any way encoder can put "moov atom" at beginning of encode's output ? Or play video without moov atom presence ?



Thank in advances



LR


-
Discord.js : How to play music stream from http?
28 septembre 2019, par Maxim.ZThis is my code :
if (msg.content.includes('*stream')) {
var name=(msg.content).slice(8,80);
if (msg.member.voiceChannel) {
msg.member.voiceChannel.join()
.then(connection => {
console.log(name);
const dispatcher = connection.playFile(name);
dispatcher.setVolume(0.5);
})
.catch(console.log);
} else {
msg.reply('Enter channel first');
}
}When I write in Discord
*stream https://play.sas-media.ru/play
, the console shows the full link (https://play.sas-media.ru/play
), the bot enters the voice channel, but nothing else happens.What am I doing wrong ?
-
How to play bunch of h264 files from amazon as URL using ffmpeg in android
16 avril 2015, par syam vakkalankaI have bunch of .h264 files in amazon s3. I can play each file by selecting them. My challenge is to play more than one file at a time like below image through amazon s3 url without saving file in sd card.