
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (90)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
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 v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (4956)
-
Convert image to webp using ffmpeg android
15 mai 2023, par Hussein YaqoobiCan I convert images(png/jpg) to webp using ffmpeg-kit ?


I did this but it didn't work :


val session = FFmpegKit.execute("-i " + File(uri).absolutePath + " -c:v libwebp " +"aaaa.webp")



-
FFMPEG, ''No such file or directory'' I cant finish the process of cutting video using ffmpeg [closed]
10 novembre 2023, par Pedrooo1.I download and install FFMPEG using chocolatey
2.My format video is .mp4 and i try to cut it for 1o sec
3.and this is the code i trying to use


ffmpeg -i "testing" -c copy -map 0 -segment_time 00:00:10 -f segment -reset_timestamps 1 output%03d.mp4




I've tried searching from the previous question but didn't get a clear answer


clear explanation and the code also if possible :)


-
FFMPEG Container ERROR Playback cannot continue. No available working or supported playlists [closed]
14 septembre 2023, par NormalUserI tried to convert a mkv video to hls with a docker container, I get the error message "Playback cannot continue. No available working or supported playlists.". But when I did it without the docker container video.js could play it too, probably I forgot an important line ?
Docker code


docker run --rm \
 -v /mnt:/config \
 linuxserver/ffmpeg \
 -i /config/input.mkv \
 -c:v copy \
 -c:a copy \
 -sn \
 -f hls \
 -hls_list_size 0 \
 /config/homepage/assets/hls/videos/output.m3u8



Normal command


ffmpeg -i input.mkv -c:v h264 -master_pl_name master.m3u8 -hls_time 10 -hls_list_size 0 -f hls -map 0 -c:a aac -b:a 128k -strict -2 -vf "subtitles=input.mkv" -map a -map v -map s -var_stream_map "a:0,v:0,s:0 a:1,v:1 s:1" test/stream_%v.m3u8



The result of the docker format can not be played in the browser but with vlc, with the normal command it is the other way around, on the web page yes, vlc no.
there is no need to look at the directory structure, it works.
Is the Syntax right ?