
Recherche avancée
Autres articles (21)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6096)
-
tests/fate : disable compression for zlib-based codecs
29 septembre 2024, par Ramiro Pollatests/fate : disable compression for zlib-based codecs
FATE results differ when using the original zlib and zlib-ng.
Since we don't need to test the result from zlib itself, this commit
disables compression on tests for zlib-based codecs, which ends up
giving the same results with both libraries.Signed-off-by : James Almer <jamrial@gmail.com>
- [DH] tests/fate/cover-art.mak
- [DH] tests/fate/image.mak
- [DH] tests/fate/lavf-image.mak
- [DH] tests/fate/lavf-video.mak
- [DH] tests/fate/mov.mak
- [DH] tests/fate/vcodec.mak
- [DH] tests/ref/fate/copy-apng
- [DH] tests/ref/fate/cover-art-aiff-id3v2-remux
- [DH] tests/ref/fate/cover-art-flac-remux
- [DH] tests/ref/fate/cover-art-mp3-id3v2-remux
- [DH] tests/ref/fate/mov-cover-image
- [DH] tests/ref/fate/png-icc
- [DH] tests/ref/fate/png-mdcv
- [DH] tests/ref/lavf/apng
- [DH] tests/ref/lavf/apng.png
- [DH] tests/ref/lavf/gray16be.png
- [DH] tests/ref/lavf/png
- [DH] tests/ref/lavf/rgb48be.png
- [DH] tests/ref/seek/vsynth_lena-flashsv
- [DH] tests/ref/vsynth/vsynth1-flashsv
- [DH] tests/ref/vsynth/vsynth1-mpng
- [DH] tests/ref/vsynth/vsynth1-zlib
- [DH] tests/ref/vsynth/vsynth2-flashsv
- [DH] tests/ref/vsynth/vsynth2-mpng
- [DH] tests/ref/vsynth/vsynth2-zlib
- [DH] tests/ref/vsynth/vsynth3-flashsv
- [DH] tests/ref/vsynth/vsynth3-mpng
- [DH] tests/ref/vsynth/vsynth3-zlib
- [DH] tests/ref/vsynth/vsynth_lena-flashsv
- [DH] tests/ref/vsynth/vsynth_lena-mpng
- [DH] tests/ref/vsynth/vsynth_lena-zlib
-
Merge pull request #3437 from TeLiXj/patch-1
11 avril 2016, par blueimpMerge pull request #3437 from TeLiXj/patch-1
Add support for files with UTF-8 start letter
-
Convert m3u8 File URL to a GIF File [closed]
30 juin 2023, par nxsiI 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 ?)


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


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
)

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


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


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