Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (42)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les images

    15 mai 2013
  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (7243)

  • avcodec : Bump micro version after changing public JPEG 2000 defines

    24 mai 2016, par Diego Biurrun
    avcodec : Bump micro version after changing public JPEG 2000 defines
    
    • [DBH] doc/APIchanges
    • [DBH] libavcodec/version.h
  • avformat : Auto-detect mjpeg 2000 in mpeg-ts

    11 octobre 2016, par Ståle Kristoffersen
    avformat : Auto-detect mjpeg 2000 in mpeg-ts
    

    This makes it possible to decode motion jpeg 2000
    encoded in a transport stream without a correct PMT/PAT.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/mj2kdec.c
    • [DH] libavformat/utils.c
    • [DH] libavformat/version.h
  • Distube (Unbuntu) - DiscordAPIERROR : Invalid Form Body Content : Must be 2000 or fewer in length

    25 mai 2021, par Bombo43453

    I recently transferred my discord bot to a VPS that is unbuntu based. The issue is that it will not play any sort of music. It starts to process it and then it says the error below.

    &#xA;

    (node:5252) UnhandledPromiseRejectionWarning: DiscordAPIError: Invalid Form Body&#xA;content: Must be 2000 or fewer in length.&#xA;    at RequestHandler.execute (/home/lanthonylal/EA-BOT/node_modules/discord.js/src/rest/RequestHandler.js:154:13)&#xA;    at processTicksAndRejections (internal/process/task_queues.js:95:5)&#xA;    at async RequestHandler.push (/home/lanthonylal/EA-BOT/node_modules/discord.js/src/rest/RequestHandler.js:39:14)&#xA;(node:5252) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by re&#xA;jecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see http&#xA;s://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)&#xA;(node:5252) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js proces&#xA;s with a non-zero exit code.&#xA;

    &#xA;

    My Play.js File :

    &#xA;

    module.exports = {&#xA;    name: `play`,&#xA;    description: `Play A Song`,&#xA;    hidden: false,&#xA;    aliases: [`p`],&#xA;    usage: `(song)`,&#xA;&#xA;async execute(client, message, args, Discord, errorlog, botlog, msglog, profileData, guildProfile){&#xA;    const music = args.join(&#x27; &#x27;);&#xA;    if (!message.member.voice.channel) return message.channel.send(`Uh Oh - You&#x27;re not in a voice channel !`);&#xA;&#xA;        if (message.guild.me.voice.channel &amp;&amp; message.member.voice.channel.id !== message.guild.me.voice.channel.id) return message.channel.send(` You Are Not In The Same Voice Channel The Bot Is Currently In!`);&#xA;&#xA;        if (!args[0]) return message.channel.send(`Uh Oh - Please indicate the title of a song !`);&#xA;    client.distube.play(message, args.join(&#x27; &#x27;))&#xA;}&#xA;}&#xA;

    &#xA;

    I can confirm that this works when I use windows powershell. Do you think this can possibly be due to it being unbuntu or does distube have no support for this ?

    &#xA;