Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (71)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 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 (...)

Sur d’autres sites (9900)

  • avdevice/decklink : Add support for EIA-708 output over SDI

    7 septembre 2018, par Devin Heitmueller
    avdevice/decklink : Add support for EIA-708 output over SDI
    

    Hook in libklvanc and use it for output of EIA-708 captions over
    SDI. The bulk of this patch is just general support for ancillary
    data for the Decklink SDI module - the real work for construction
    of the EIA-708 CDP and VANC line construction is done by libklvanc.

    Libklvanc can be found at : https://github.com/stoth68000/libklvanc

    Updated to reflect feedback from Marton Balint <cus@passwd.hu>,
    Carl Eugen Hoyos <ceffmpeg@gmail.com>, Aaron Levinson
    <alevinsn_dev@levland.net>, and Moritz Barsnick <barsnick@gmx.net>

    Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] configure
    • [DH] libavdevice/decklink_common.cpp
    • [DH] libavdevice/decklink_common.h
    • [DH] libavdevice/decklink_enc.cpp
    • [DH] libavdevice/version.h
  • discord.py bot doesn't play music

    29 août 2022, par bon ho

    I'm making music bot with discord.py, but bot doesn't play music. The code doesn't send error message.

    &#xA;

    my code :

    &#xA;

    @tree.command(name="play", description="play music")&#xA;async def playmusic(interaction:Interaction,url_title:str,playfirst:bool=False):&#xA;  await interaction.response.send_message("I&#x27;m looking for music!!")&#xA;  guild=str(interaction.guild.id)&#xA;  try:&#xA;    queue[guild]&#xA;  except KeyError:&#xA;    queue[guild]=[]&#xA;  if interaction.user.voice is None:&#xA;    await interaction.edit_original_response(content="you must join any voice channel")&#xA;  else:&#xA;    voice_client: discord.VoiceClient = discord.utils.get(client.voice_clients, guild=interaction.guild)&#xA;    if voice_client == None:&#xA;      await interaction.user.voice.channel.connect()&#xA;      voice_client: discord.VoiceClient = discord.utils.get(client.voice_clients, guild=interaction.guild)&#xA;    player = await YTDLSource.from_url(url_title, loop=None)&#xA;    if playfirst and len(queue[guild])>1:&#xA;      queue[guild].insert(1,player)&#xA;    else:&#xA;      queue[guild].append(player)&#xA;    if not voice_client.is_playing():&#xA;      voice_client.play(player,after=None)&#xA;      await interaction.edit_original_response(content=f"{player.title} playing!!")&#xA;    else:&#xA;      await interaction.edit_original_response(content=f"{player.title} enqueued!")&#xA;    await asyncio.sleep(7)&#xA;    await interaction.delete_original_response()&#xA;

    &#xA;

    output :

    &#xA;

    [INFO    ] discord.player: ffmpeg process 12 successfully terminated with return code of -11.&#xA;

    &#xA;

    What should I do ?

    &#xA;

    version :

    &#xA;

    discord.py 2.0.0 python 3.10.6

    &#xA;

  • Many link errors when build ffmpeg-4.3.2 on MSYS2 MinGW

    24 mars 2021, par jelly

    A few lines of link error infomation are these :

    &#xA;

    LD      ffmpeg_g.exe&#xA;fftools/ffmpeg_opt.o: In function `add_input_streams&#x27;:&#xA;D:\code\opensource-player\ffmpeg-4.3.2/fftools/ffmpeg_opt.c:777: undefined reference to `avcodec_get_class&#x27;&#xA;D:\code\opensource-player\ffmpeg-4.3.2/fftools/ffmpeg_opt.c:777:(.text&#x2B;0x2c66): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `avcodec_get_class&#x27;&#xA;D:\code\opensource-player\ffmpeg-4.3.2/fftools/ffmpeg_opt.c:831: undefined reference to `avcodec_alloc_context3&#x27;&#xA;D:\code\opensource-player\ffmpeg-4.3.2/fftools/ffmpeg_opt.c:831:(.text&#x2B;0x340f): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `avcodec_alloc_context3&#x27;&#xA;D:\code\opensource-player\ffmpeg-4.3.2/fftools/ffmpeg_opt.c:837: undefined reference to `avcodec_parameters_to_context&#x27;&#xA;D:\code\opensource-player\ffmpeg-4.3.2/fftools/ffmpeg_opt.c:837:(.text&#x2B;0x3429): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `avcodec_parameters_to_context&#x27;&#xA;

    &#xA;

    The command I used are these :

    &#xA;

    ./configure --disable-shared --extra-cflags=-I/d/Tools/mingw64/include --extra-ldflags=-L/d/Tools/mingw64/lib --target-os=mingw64 --disable-x86asm&#xA;&#xA;make&#xA;

    &#xA;