
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (44)
-
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 (...) -
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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (...)
Sur d’autres sites (8221)
-
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 !