Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (72)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 (13090)

  • lavfi/tonemap_opencl : reuse color matrix calculation from colorspace.c

    22 janvier 2019, par Ruiling Song
    lavfi/tonemap_opencl : reuse color matrix calculation from colorspace.c
    

    Signed-off-by : Ruiling Song <ruiling.song@intel.com>

    • [DH] libavfilter/opencl/colorspace_common.cl
    • [DH] libavfilter/vf_tonemap_opencl.c
  • TypeError : 'FFmpegOpusAudio' object is not subscriptable

    12 octobre 2022, par Virat Chauhan

    I am getting this error whenever I try to get the bot to play a song in vc :

    &#xA;

    await ctx.send(&#x27;Now playing &#x27; &#x2B; &#x27;**&#x27; &#x2B; str(queues[ctx.message.guild.id][&#x27;title&#x27;][0]) &#x2B; &#x27;**&#x27;)&#xA;TypeError: &#x27;FFmpegOpusAudio&#x27; object is not subscriptable&#xA;

    &#xA;

    Here is the relevant code :

    &#xA;

      async def playSong(self, ctx, url):&#xA;    queues[ctx.message.guild.id][&#x27;title&#x27;] = []&#xA;    with youtube_dl.YoutubeDL(self.YDL_OPTIONS) as ydl:&#xA;      info = ydl.extract_info(url, download=False)&#xA;      if &#x27;entries&#x27; in info:        # if no url is input&#xA;        url2 = info[&#x27;entries&#x27;][0][&#x27;formats&#x27;][0][&#x27;url&#x27;]&#xA;        queues[ctx.message.guild.id][&#x27;title&#x27;].append(info[&#x27;entries&#x27;][0][&#x27;title&#x27;])&#xA;      elif &#x27;formats&#x27; in info:      # if url is passed&#xA;        url2 = info[&#x27;formats&#x27;][0][&#x27;url&#x27;]&#xA;        queues[ctx.message.guild.id][&#x27;title&#x27;].append(info[&#x27;title&#x27;])&#xA;      #print(queues[ctx.message.guild.id][&#x27;title&#x27;][0])&#xA;      stream = await discord.FFmpegOpusAudio.from_probe(url2, **self.FFMPEG_OPTIONS)&#xA;    return stream&#xA;  &#xA;  @commands.command(name=&#x27;play&#x27;, help="Plays any song", aliases=[&#x27;p&#x27;])&#xA;  async def play(self, ctx, *, url):&#xA;    vc = ctx.guild.voice_client&#xA;    if not vc.is_playing():&#xA;      guild = ctx.message.guild&#xA;      &#xA;      queues[guild.id] = {}&#xA;      stream = await self.playSong(ctx, url)&#xA;      queues[guild.id] = stream&#xA;      vc.play(stream, after=lambda e: self.queueCheck(guild.id, vc))&#xA;      await ctx.send(&#x27;Now playing &#x27; &#x2B; &#x27;**&#x27; &#x2B; str(queues[ctx.message.guild.id][&#x27;title&#x27;][0]) &#x2B; &#x27;**&#x27;)&#xA;

    &#xA;

    I am aware that this can be solved with having two dictionaries but I wish to contain all data inside a single structure.

    &#xA;

  • lavu/opencl : replace va_ext.h with standard name

    23 novembre 2018, par Ruiling Song
    lavu/opencl : replace va_ext.h with standard name
    

    Khronos OpenCL header (https://github.com/KhronosGroup/OpenCL-Headers)
    uses cl_va_api_media_sharing_intel.h. And Intel's official OpenCL driver
    for Intel GPU (https://github.com/intel/compute-runtime) was compiled
    against Khronos OpenCL header. So it's better to align with Khronos.

    Signed-off-by : Ruiling Song <ruiling.song@intel.com>

    • [DH] configure
    • [DH] libavutil/hwcontext_opencl.c