
Recherche avancée
Autres articles (109)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...)
Sur d’autres sites (14985)
-
FFmpeg : Invalid data found when processing input after created a video slideshow from images
8 décembre 2014, par David ZhuangFFmpeg provides some examples of making slideshow from image(s) :
https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images
So I ’ve tried this command :
ffmpeg -loop 1 -t 10 -framerate 24 -i '1.png' -c:v libx264 -crf 36 -vf scale=640:360 -pix_fmt yuv420p -shortest 2.mp4
It is a success generating a
MP4
file. Also there’s no problem remuxing it intoFLV
.FFmpeg gave no no error when I mux the video stream into
.h264
.But when I tried to process this file further, ffmpeg gave me this error :
$ffmpeg -i 2.h264
ffmpeg version 2.4.3 Copyright (c) 2000-2014 the FFmpeg developers
built on Nov 4 2014 11:01:51 with llvm-gcc 4.2.1 (LLVM build 2336.11.00)
configuration: --prefix=/Volumes/Ramdisk/sw --enable-gpl --enable-pthreads --enable-version3 --enable-libspeex --enable-libvpx --disable-decoder=libvpx --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-avfilter --enable-libopencore_amrwb --enable-libopencore_amrnb --enable-filters --enable-libgsm --enable-libvidstab --enable-libx265 --arch=x86_64 --enable-runtime-cpudetect
libavutil 54. 7.100 / 54. 7.100
libavcodec 56. 1.100 / 56. 1.100
libavformat 56. 4.101 / 56. 4.101
libavdevice 56. 0.100 / 56. 0.100
libavfilter 5. 1.100 / 5. 1.100
libswscale 3. 0.100 / 3. 0.100
libswresample 1. 1.100 / 1. 1.100
libpostproc 53. 0.100 / 53. 0.100
2.h264: Invalid data found when processing input(OSX 10.10.1, with binary from http://ffmpegmac.net/ )
This problem can be reproduced on another Ubuntu 12.04 x64 machine :
# ffmpeg -i 2.h264 -c copy 2.flv
ffmpeg version 2.3.git Copyright (c) 2000-2014 the FFmpeg developers
built on Aug 3 2014 13:42:36 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configuration: --prefix=/root/ffmpeg_build --extra-cflags=-I/root/ffmpeg_build/include --extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libx264 --enable-nonfree
libavutil 52. 94.100 / 52. 94.100
libavcodec 55. 71.100 / 55. 71.100
libavformat 55. 50.100 / 55. 50.100
libavdevice 55. 13.102 / 55. 13.102
libavfilter 4. 11.102 / 4. 11.102
libswscale 2. 6.100 / 2. 6.100
libswresample 0. 19.100 / 0. 19.100
libpostproc 52. 3.100 / 52. 3.100
2.h264: Invalid data found when processing inputSo what the problem with this file ?
-
Upgrade FFmpeg using GIT
5 février 2014, par xirukitepeHi I want to verify if my FFMpeg version is not updated.
Here's the output upon running this command :
ffmpeg -version
ffmpeg version git-2013-04-05-9a8f1e7 Copyright (c) 2000-2013 the FFmpeg developers
built on Apr 5 2013 18:38:36 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configuration: --enable-gpl --enable-libass --enable-libfaac --enable-libfdk-aac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libspeex --enable-librtmp --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --enable-version3I am not super familiar when FFmpeg is compiled and installed via GIT.
I just followed the Ubuntu Compilation Guide by FFmpeg.
And how to verify if it is not the latest ? Thanks in advance.
PS
The remote is :
git://source.ffmpeg.org/ffmpeg.git
-
GTE Command of FFmpeg
26 mars 2021, par Huy NguyenI have this code

for %%t in ("input\*.*") DO ffmpeg -y -i "%%t" -i 1.mp4 -filter_complex "[0:v]scale=1280x720[v1];[1:v]scale=1280x720[v2];[v1][v2]overlay=shortest=1:enable='lt(mod(t,6),4)*gte(t,1.5)':x=0:y=0, [0:a][1:a]overlay=shortest=1:enable='lt(mod(t,6),4)*gte(t,1.5)" -vcodec libx264 -pix_fmt yuv420p -r 30 -g 60 -b:v 1000k -acodec libmp3lame -b:a 128k -ar 44100 -metadata title="" -metadata artist="" -metadata album_artist="" -metadata album="" -metadata date="" -metadata track="" -metadata genre="" -metadata publisher="" -metadata encoded_by="" -metadata copyright="" -metadata composer="" -metadata performer="" -metadata TIT1="" -metadata TIT3="" -metadata disc="" -metadata TKEY="" -metadata TBPM="" -metadata language="eng" -metadata encoder="" -threads 0 "%OUTPUT%\%%~nt.mp4"

And this is result

[AVFilterGraph @ 0000000002d91d20] Too many inputs specified for the "overlay" filter.
Error initializing complex filters.
Invalid argument.```

i try to fix them but i dont know how,can someone help me?