
Recherche avancée
Autres articles (38)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (5785)
-
Overlay on full video length when making video from images sequence using ffmpeg
30 octobre 2019, par AttaI am facing a issue when I overlay watermark image on video (I am making video from images sequence).The issue is that the overlay image only append on first image and ignoring all other images in video. I want to overlay this image on whole video. Possibly I am wrongly applying -filter_graph to input stream. I am executing below mentioned script. I searched online but did not find any relevant answer.
ffmpeg -r 1/5 -i img%2d.jpeg -i watermark.png -i music.mp3 -filter_complex "[0:v][1:v] overlay=x=10:y=10" video.mp4
-
hls.js - Support for h.265 / HEVC ?
27 juillet 2017, par momomoDoes hls.js support HEVC yet ? Do they have any plans to do so ?
I am guessing all that’s needed is to write a new decoder ?
I believe that’s already been written. Right ? I’ve found a JS decoder online, albeit 1.2 MB large.
libde265.js – JavaScript HEVC/H.265 bitstream decoder
Wouldn’t it just be a matter of replacing some parts of hls with this library ?
To me such support seems critical considering the file size difference for video output.
Also, does iOS support HEVC since hls.js doesn’t work there ?
-
FFmpeg : Build ffplay on Windows with Visual Studio and MSYS2
13 septembre 2023, par San ZhangI have built FFmpeg on Windows with Visual Studio and MSYS2.


My problem is, ffplay.exe is not built. Some search online suggests the reason might be of missing dependencies(most likely sdl2). I then installed sdl2 with MSYS2, and realized that the only sdl2 package available was built with MinGW. I imagine this means Visual Studio won't be able to use it to build ffplay.exe.


My question : I can download sdl2 that's built with VC++, but how do I incorporate that into the FFmpeg build ? Do I simply put SDL2.dll under [MSYS2_Folder]\mingw64\bin ?


Any thought/idea ?