Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (67)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7565)

  • Improve LPC order guess

    3 décembre 2014, par Martijn van Beurden
    Improve LPC order guess
    

    The recent compression preset retuning improved upon most material
    but it the few tracks that show regression are usually classical
    music. This patch improves compression by improving the LPC order
    guess, of which classical music benefits most.

    Improvement is 0.007% on average but up to 0.1%. I haven’t seen
    regressions for any of my test samples.

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] src/libFLAC/lpc.c
  • Convert m3u8 File URL to a GIF File [closed]

    30 juin 2023, par nxsi

    I have a m3u8 File URL that I got using the MusicKit API (Apple Music) which is an animated cover art for an album. (A quick side question on that. Is m3u8 the only format that Apple Music returns for animated cover arts ?)

    &#xA;

    So, Now that I have that m3u8 file URL, I want to convert it to a GIF for the ease of use of GIFs.&#xA;I've tried using ffmpeg but I don't really seem to make it work at all with NodeJS.

    &#xA;

    Here is a sample File URL of what Apple Music returns (https://mvod.itunes.apple.com/itunes-assets/HLSMusic116/v4/cb/ac/9e/cbac9e42-0c8a-9798-0016-52ce447cdc78/P359486356_default.m3u8)

    &#xA;

    TLDR ;&#xA;1- Is m3u8 the only format of animated cover arts that the MusicKit api returns ?&#xA;2- Can I convert that m3u8 file URL to a GIF, If so, How ?&#xA;3- Are there any other ways than ffmpeg to use in NodeJS ?

    &#xA;

    I've tried using ffmpeg and the furthest I got was a GIF that was corrupted and not done correctly.&#xA;Here is the command I tried :

    &#xA;

    ffmpeg -i "https://mvod.itunes.apple.com/itunes-assets/HLSMusic116/v4/cb/ac/9e/cbac9e42-0c8a-9798-0016-52ce447cdc78/P359486356_default.m3u8" -vf "fps=10,scale=320:-1:flags=lanczos" output.gif&#xA;

    &#xA;

  • FFmpeg amix + volume filters create saturated output ?

    1er septembre 2021, par Sonia Seddiki
    &#xA;

    First of all, this is a question asked more out of curiosity than desperate need of fixing. I seem to have "fixed" it by upgrading from FFmpeg 3.4.6 to FFmpeg 4.3.1. Or so I think, at least the result is much better.

    &#xA;

    &#xA;

    I'm trying to mix 2 audio files (of the same length, so no scale variation here) using FFmpeg amix filter :

    &#xA;

      &#xA;
    • A music which starts pretty loud in the beginning and then is almost quiet until the end,
    • &#xA;

    • An audio that starts with silence (basically as long as the music is loud), then continues with a person speaking at an "average" volume
    • &#xA;

    &#xA;

    Now, I learnt that the filter will divide each input volume by 1/nb_active_inputs (by 2 in my case then), so I added a volume filter on the output to multiply its volume by 2. My command basically looks like this :

    &#xA;

    ffmpeg -i music.mp3 -i voice.mp3 -filter_complex amix=inputs=2:duration=first[mix];[mix]volume=2[out] -map [out] output.mp3&#xA;

    &#xA;

    After that complex filter, my final output is completely distorted. The voice sounds overall very loud and saturated.

    &#xA;

    I'm not an expert with audio nor with FFmpeg so I assume I'm missing something. I'm trying to understand what is going on and why I am having this result since I use the same inputs, filters and filter options in both cases. Only the FFmpeg version differs.

    &#xA;

    I've tried to read the code of af_amix.c for both versions but can't seem to find any explanation for that difference. I've seen that the 4.3.1 has a weights option for inputs but from what I understood, they default to 1.0 if not specified. Any clue would be much appreciated.

    &#xA;