
Recherche avancée
Autres articles (71)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
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 (...)
Sur d’autres sites (12134)
-
Docs : Re-worded the number of ways to set copy text
24 août 2015, par thadseaverDocs : Re-worded the number of ways to set copy text
Closes #602.
-
How to add zoom transition effects using FFmpeg to a variable number of images ?
13 mai 2019, par MathematicsHow can I add add zoom transition effects using FFmpeg to a variable number of images ?
I am able to create video from a variable number of images but I am not sure how to add zoom in and out transition effects between images :
ffmpeg -framerate 1/5 -i img%03d.jpeg -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4
I found this,
https://superuser.com/questions/1189246/ffmpeg-image-slideshow-with-zoompan-and-fade-in-out/1190199
But problem is that images are hard coded in that example and I am not sure how to make it work for a variable number of images ?
-
How to output series file name to folder name without seasons number
7 mars 2023, par Mostafa Daashjust i want to make out put like example using for f


i have series episode

Fast Fast S01E02.mkv

i want output to directory /media/Fast Fast/Fast Fast S01E02.mkv

how i can equivalent folder name from file name without S01E02


i use this


for f in *.mkv; do ffmpeg -i "$f" -i logo.png -filter_complex "overlay=40:main_h-overlay_h-40" -codec:a aac -c:v h264 /media/folder name/"${f%.*}".mkv


for f in *.mkv; do ffmpeg -i "$f" -i logo.png -filter_complex "overlay=40:main_h-overlay_h-40" -codec:a aac -c:v h264 /media/folder name/"${f%.*}".mkv