
Recherche avancée
Autres articles (57)
-
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 (...) -
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 (...) -
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 (...)
Sur d’autres sites (9777)
-
Create a subtitle mpd file with MP4box
13 juillet 2020, par 123abcI'm creating a mpd file for a video player and for now I have everything to cover the video, audio and language settings but I'm struggling with the subtitles.


Here's the command I used for audio and video :


mp4box -dash 10000 -profile dashavc:264:onDemand -rap video/audio.mp4#audio/video



-
How to create music video using ffmpeg ?
17 juin 2020, par Pierre DunnHow can I join together
flac
orwav
file with a cover image (not only as a thumbnail, but also as a static image for all video duration) ?


How to achieve the best audio quality ? Should I use 48 kHz or 44.1 kHz frequencies for my audio ?



Should I tag my audio files before converting them to WebM ?


-
FFmpeg - concat video and image
15 juin 2020, par AleVastaI am trying to concat a jpeg with a mp4, but when I concat both with this commands, the result is a video with the audio starting from the time 00:00:00, I want it to start along with the video in 0:0:10. So basically the idea of imageUrl is to have a sort of cover or presentation.



-loop 1 -t 10 -i ${imageUrl} -i ${videoUrl} -filter_complex "[0:v:0][1:v:0]concat=n=2:v=1:a=0" -r 60 -vn -y -c:a copy -s 640x352 ${outputUrl}




Any idea how I can fix it ? thanks !