
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (66)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (13931)
-
Revert "avcodec/decode : use a packet list to store packet properties"
4 décembre 2022, par James AlmerRevert "avcodec/decode : use a packet list to store packet properties"
The idea behind last_pkt_props was to store the properties of the last packet
fed to the decoder. Any sort of queueing required by CODEC_CAP_DELAY decoders
that consume several packets before they start outputting frames should be done
by the decoders in question. An example of this is libdav1d.This is required for the following commits that will fix last_pkt_props in
frame threading scenarios, as well as maintain its contents during flush.This revers commit 022a12b306ab2096e6ac9fc9b149828a849d65b2.
Signed-off-by : James Almer <jamrial@gmail.com>
-
TypeError : Cannot read properties of undefined (reading 'voice') Discord.js
28 novembre 2022, par EgorI'm making a discord bot for music


This error occurs when trying to run play()


TypeError : Cannot read properties of undefined (reading 'voice')


play() :


await interaction.deferReply();

 const query = interaction.options.get("query").value;
 const searchResult = await player
 .search(query, {
 requestedBy: interaction.user,
 searchEngine: QueryType.AUTO
 })
 .catch(() => {});
 if (!searchResult || !searchResult.tracks.length) return void interaction.followUp({ content: "No results were found!" });

 const queue = await player.createQueue(interaction.guild, {
 metadata: interaction.channel
 });

 try {
 if (!queue.connection) await queue.connect(interaction.member.voice.channel);
 } catch {
 void player.deleteQueue(interaction.guildId);
 return void interaction.followUp({ content: "Could not join your voice channel!" });
 }

 await interaction.followUp({ content: `⏱ | Loading your ${searchResult.playlist ? "playlist" : "track"}...` });
 searchResult.playlist ? queue.addTracks(searchResult.tracks) : queue.addTrack(searchResult.tracks[0]);
 if (!queue.playing) await queue.play();
} else if (interaction.commandName === "skip") {
 await interaction.deferReply();
 const queue = player.getQueue(interaction.guildId);
 if (!queue || !queue.playing) return void interaction.followUp({ content: "❌ | No music is being played!" });
 const currentTrack = queue.current;
 const success = queue.skip();
 return void interaction.followUp({
 content: success ? `✅ | Skipped **${currentTrack}**!` : "❌ | Something went wrong!"
 });
} else if (interaction.commandName === "stop") {
 await interaction.deferReply();
 const queue = player.getQueue(interaction.guildId);
 if (!queue || !queue.playing) return void interaction.followUp({ content: "❌ | No music is being played!" });
 queue.destroy();
 return void interaction.followUp({ content: "🛑 | Stopped the player!" });
} else {
 interaction.reply({
 content: "Unknown command!",
 ephemeral: true
 });




I tried other solutions to similar questions but they didn't work.


-
avformat/avisynth : read _SARNum/_SARDen from frame properties
28 août 2022, par Stephen Hutchinson