
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (70)
-
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 (7695)
-
tests : Renamed pix_fmts wording in ffv1 test target name to match pix_fmt parameter.
31 août 2015, par Peter Btests : Renamed pix_fmts wording in ffv1 test target name to match pix_fmt parameter.
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
- [DH] tests/fate/vcodec.mak
- [DH] tests/ref/vsynth/vsynth1-ffv1-v0
- [DH] tests/ref/vsynth/vsynth1-ffv1-v3-bgr0
- [DH] tests/ref/vsynth/vsynth1-ffv1-v3-yuv420p
- [DH] tests/ref/vsynth/vsynth1-ffv1-v3-yuv422p10
- [DH] tests/ref/vsynth/vsynth1-ffv1-v3-yuv444p16
- [DH] tests/ref/vsynth/vsynth1-ffv1.0
- [DH] tests/ref/vsynth/vsynth1-ffv1.3-420
- [DH] tests/ref/vsynth/vsynth1-ffv1.3-422p10
- [DH] tests/ref/vsynth/vsynth1-ffv1.3-444p16
- [DH] tests/ref/vsynth/vsynth1-ffv1.3-bgr
- [DH] tests/ref/vsynth/vsynth2-ffv1-v0
- [DH] tests/ref/vsynth/vsynth2-ffv1-v3-bgr0
- [DH] tests/ref/vsynth/vsynth2-ffv1-v3-yuv420p
- [DH] tests/ref/vsynth/vsynth2-ffv1-v3-yuv422p10
- [DH] tests/ref/vsynth/vsynth2-ffv1-v3-yuv444p16
- [DH] tests/ref/vsynth/vsynth2-ffv1.0
- [DH] tests/ref/vsynth/vsynth2-ffv1.3-420
- [DH] tests/ref/vsynth/vsynth2-ffv1.3-422p10
- [DH] tests/ref/vsynth/vsynth2-ffv1.3-444p16
- [DH] tests/ref/vsynth/vsynth2-ffv1.3-bgr
- [DH] tests/ref/vsynth/vsynth3-ffv1-v0
- [DH] tests/ref/vsynth/vsynth3-ffv1-v3-bgr0
- [DH] tests/ref/vsynth/vsynth3-ffv1-v3-yuv420p
- [DH] tests/ref/vsynth/vsynth3-ffv1-v3-yuv422p10
- [DH] tests/ref/vsynth/vsynth3-ffv1-v3-yuv444p16
- [DH] tests/ref/vsynth/vsynth3-ffv1.0
- [DH] tests/ref/vsynth/vsynth3-ffv1.3-420
- [DH] tests/ref/vsynth/vsynth3-ffv1.3-422p10
- [DH] tests/ref/vsynth/vsynth3-ffv1.3-444p16
- [DH] tests/ref/vsynth/vsynth3-ffv1.3-bgr
- [DH] tests/ref/vsynth/vsynth_lena-ffv1-v0
- [DH] tests/ref/vsynth/vsynth_lena-ffv1-v3-bgr0
- [DH] tests/ref/vsynth/vsynth_lena-ffv1-v3-yuv420
- [DH] tests/ref/vsynth/vsynth_lena-ffv1-v3-yuv420p
- [DH] tests/ref/vsynth/vsynth_lena-ffv1-v3-yuv422p10
- [DH] tests/ref/vsynth/vsynth_lena-ffv1-v3-yuv444p16
-
ffmpeg - Input link in1:v0 parameters (size 640x640, SAR 16:9) do not match the corresponding output link in0:v0 parameters (640x640, SAR 427:240)
22 mars 2024, par fobusI'm trying to concat 4 mp4 files. I'm using the command below but not able to concat



ffmpeg -i new1.mp4 -i new2.mp4 -i new3.mp4 -i new4.mp4 -filter_complex concat=n=4:v=1:a=1 output.mp4




Getting this error :



Input link in1:v0 parameters (size 640x640, SAR 16:9) do not match the corresponding output link in0:v0 parameters (640x640, SAR 427:240)




All four vides has the same codec and same size (640x640) and the same bitrate (30)



What I am doing wrong ?


-
FFMPEG says “No such file or directory” when trying to convert image sequence ($02d)
16 juillet 2020, par Paulo A. CostaI am trying to create a slide movie from images using ffmpeg. I´m trying to use my images 00..99.jpg


My images should be identified by FFMPEG from %02d.jpg. Issuing ls img[0-9][0-9].jpg succeeds in the very same directory I issue the FFMPEG command.


The command I use is :


ffmpeg -y -framerate 1/5 -i images\%02d.jpg -r 30 -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" -minrate 859k -maxrate 859k -b:v 859k -bufsize 859k \images\output.mp4



They founded the file 01, 02, 03, 04, 05. But the file 30 they couldn't find.


%02d isn't a representation of 00 to 99 ? Why this isnt working ?


How I can get 00 to 99 ; or if not possible, how I can get all jpgs from my images directory (*.jpg) ?


Thank You.