
Recherche avancée
Autres articles (51)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (9064)
-
Building ffmpeg on WIN 10
21 mars 2016, par DmitryI`m trying to install ffmpeg library on WIN 10 following instruction.
Until lineInvoke the following make commands
Everything was ok (all results in msys32 output was the same as in instruction). But when do
../../../configure \
--toolchain=msvc \
--disable-programs \
--disable-d3d11va \
--disable-dxva2 \
--arch=x86 \
--enable-shared \
--enable-cross-compile \
--target-os=win32 \
--extra-cflags="-MD -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WIN32_WINNT=0x0A00" \
--extra-ldflags="-APPCONTAINER WindowsApp.lib" \
--prefix=../../../Build/Windows10/x86
make
make installMsys32 says :
cl is unable to create an executable file. C compiler test failed.
If you think configure made a mistake, make sure you are using the
latest version from Git. If the latest version fails, report the
problem to the ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on
irc.freenode.net. Include the log file "config.log" produced by
configure as this will help solve the problem.Launching msys32 from VS2015 Native Tools Command Prompt.
How to fix it ?
screenshot of msysAlso, in config.log at the end of file found this :
WARNING : pkg-config not found, library detection may fail. mktemp -u
XXXXXX y81gTF check_ld cc check_cc BEGIN ./ffconf.J02kVuXC.c
1 int main(void) return 0 ; END ./ffconf.J02kVuXC.c cl -nologo -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS -MD -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WIN32_WINNT=0x0A00 -c -Fo./ffconf.U0KH6R5x.o ./ffconf.J02kVuXC.c ffconf.J02kVuXC.c /c/LIBS/ffmpeg1/ffmpeg/compat/windows/mslink
-APPCONTAINER WindowsApp.lib -nologo -out :./ffconf.UBL5VH7u.exe ./ffconf.U0KH6R5x.o LINK : fatal error LNK1181 : cannot open input file "WindowsApp.lib" C compiler test failed. -
Ffmpeg command results in output contains no video stream error
23 décembre 2022, par Aenye_CerbinI'm trying to execute the following command :



ffmpeg -hide_banner -loglevel warning -progress -i E:\TEMP\mtc\input\sample2.mp4 -acodec mp3 -vcodec libx265 -r 60 -vf "scale=2560:1440" -b:v 35000k -f matroska E:\TEMP\mtc\input\output\result.mkv


This results in error :
Output file #0 does not contain any stream


The input file exists and can be accessed by ffmpeg.
I'm working on Windows 10 with latest version of FFmpeg.


-
Insert picture into an mp4 video, probably using ffmpeg
16 février 2019, par vivanovI need to insert an image into a video of mp4 format. The image has smaller dimensions than the video, will appear after the video starts, say, after a minute and a half at certain x, y coordinates of the video frame, will stay on (full opacity) for some time and then will disappear before the video finishes.
It would also be good if the image "fades in" / "fades out" when appearing / disappearing from the video.
I would like to do that using the latest ffmpeg 4.1.1, although I am also open in using other opensource programs that run under linux if it would be achieved easier.
I have the
ffmpeg
build with--enable-gpl --enable-libx264 --enable-libvpx
if this may help.Thank you for your help !