Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (36)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (4377)

  • Rewind problem after convert *.mp3 to *.aac

    29 août 2020, par Vitaly Vesyolko

    I need to prepare audio files in MP3 format for sending via WhatsApp to Android and iOS devices with the ability to pause and mainly rewind.

    


    To do this, I use the ffmpeg utility on my notebook with Linux Ubuntu installed. Conversion example is described in detail here FFmpeg command to convert MP3 to AAC.

    


    As a result, I get AAC audio files that cannot be rewound in the WhatsApp player. I tried to set different options that are responsible for the output sound quality, size, and so on. But the ability to rewind in the WhatsApp player disappears.

    


    Rewind - is to slide by finger the circular slider in the WhatsApp audio player widget.

    


    I also used the following online services :

    


      

    1. ONLINE-CONVERT
    2. 


    3. Convertio
    4. 


    5. ZAMZAR.
    6. 


    


    One of the first two in some cases saves files with the ability to rewind, but in most cases - without it. And it very likely depends on the original file size. This is a hypothesis - if the size is small, then it is possible to rewind the audio file in the WhatsApp player. In any case, this method is not universal.

    


    Please provide a universal solution to the task at hand - a CLI utility or a tool that would convert MP3 to AAC with the ability to rewind in the WhatsApp player. And please indicate which characteristics are responsible for the absence / presence of such functionality.

    


  • lavf/async : Fix ring_write return value

    29 septembre 2022, par Guangyu Sun
    lavf/async : Fix ring_write return value
    

    This fixes a regression from commit 36117968ad.

    wrapped_url_read() used to be able to return positive number from
    ffurl_read(). It relies on the result to check if EOF is reached in
    async_buffer_task().

    But FIFO callbacks must return 0 on success. This should be handled
    in ring_write() instead.

    Test case :
    ffmpeg -f lavfi -i testsrc -t 1 test.mp4
    ffmpeg -i async:test.mp4

    Signed-off-by : Guangyu Sun <gsun@roblox.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavformat/async.c
  • Requested output format 's16le' is not a suitable output format in discord.py

    12 mars 2021, par parhammed

    i wanna play hello.mp3 in voice but i get a error :

    &#xA;

    [NULL @ 000001e7f6945c80] Requested output format &#x27;s16le&#x27; is not a suitable output format&#xA;pipe:1: Invalid argument&#xA;

    &#xA;

    code :

    &#xA;

    @Bot.command()&#xA;@commands.cooldown(1, 5, commands.BucketType.guild)&#xA;async def play(ctx, query):&#xA;&#xA;    if not ctx.author.voice: # if author was not in voice&#xA;        return&#xA;&#xA;    channel: discord.VoiceChannel = ctx.author.voice.channel&#xA;    cls: discord.VoiceClient = await channel.connect() # client of guild&#xA;&#xA;    if not cls.is_playing():&#xA;        audio_source = discord.FFmpegPCMAudio(source="hello.mp3")&#xA;        cls.play(source=audio_source, after=None)&#xA;

    &#xA;

    I searched a lot about this error and did not find any results. Please help me.

    &#xA;