
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (45)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (4523)
-
Why do I get a black box when I tile pictures with -filter_complex tile=2x1 in FFmpeg ?
19 juin 2016, par Mateusz PiotrowskiAs I was trying to write a script (which attempts to join two pictures eventually) using FFmpeg I came across a very weird behaviour.
I’ve found a command in an accepted answer for the very same problem I had (How to join two image into one by ffmpeg ?) :
ffmpeg -i a.jpg -i b.jpg -filter_complex scale=120:-1,tile=2x1 output.jpg
What happened to the B cat ? Why is it missing from the output image ? I couldn’t find any information why
tile=2x1
behaves like this. -
FFMPEG Remove black bars [duplicate]
8 janvier 2020, par Gustavo GonzalezThis question already has an answer here :
-
ffmpeg get value from cropdetect
2 answers
How i can remove black bars from video using ffmpeg ?
Like that https://i.ytimg.com/vi/4q-kFrnXHL0/maxresdefault.jpg
-
ffmpeg get value from cropdetect
-
How to split a video using black frames as markers in ffmpeg ?
13 décembre 2019, par grammI want to split a video so that when there are black frames it creates a new file.
Is there a way to do this in one command in ffmpeg ?
I can for the moment detect black frames using :ffmpeg -i myfile -vf blackdetect=d=2:pix_th=0.00 -f rawvideo -y /NUL