
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (50)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
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 (10461)
-
nodejs FFMPEG add multiple inputs not working
23 octobre 2019, par HUNGvar ffmpeg = require('fluent-ffmpeg');
var proc =
ffmpeg()
.input('./_animation/overlay1_%04d.png')
.inputFPS(20)
.input('./_animation/overlay2_%04d.png')
.inputFPS(20)
.input('./_animation/static1.png').inputFPS(1)
.input('./_animation/static2.png').inputFPS(1)
.outputFPS(20)
.save('./public/_ugc/' + new Date() + '.mp4');I would like to create a video which combining from 4 sources, i.e. overlay1 sequences, overlay2 sequences and two static images. However, it is now always shows only one of the sources only. How to combine them in each of the frame ?
And since the sources are not in the same dimension, is it possible to set the x,y coordinate for the sources ?
-
FFmpeg On iOS can’t find delogo
8 mai 2018, par Y.Y.DoeI integrated FFmpeg on iOS,and use “delogo” to clean watermark,but it does not work.
And it logs :No such filter:delogo
I don’t know why,and I need help
it’s my iOS code to use FFmpeg
dispatch_async(dispatch_get_global_queue(0, 0), ^{
char *outPic = (char *)[DocumentPath(@"delogo.mp4") UTF8String];
char *movie = (char *)[BundlePath(@"logo.mp4") UTF8String];
char *a[] = {
"ffmpeg",
"-i",
movie,
"-vf",
"delogo=x=10:y=10:w=250:h=120:show=1",
outPic
};
ffmpeg_main(sizeof(a)/sizeof(*a),a);
});my total log
ffmpeg version 3.0 Copyright (c) 2000-2016 the FFmpeg developers
built with Apple LLVM version 7.3.0 (clang-703.0.31)
configuration: --target-os=darwin --arch=arm64 --cc='xcrun -sdk iphoneos clang' --enable-cross-compile --disable-debug --disable-programs --disable-doc --enable-pic --extra-cflags='-arch arm64 -mios-version-min=6.0 -fembed-bitcode' --extra-ldflags='-arch arm64 -mios-version-min=6.0 -fembed-bitcode' --prefix=/Users/lxh/Desktop/FFmpeg-iOS-build-script-master/thin/arm64
WARNING: library configuration mismatch
avutil configuration: --target-os=darwin --arch=x86_64 --cc='xcrun -sdk iphonesimulator clang' --enable-cross-compile --disable-debug --disable-programs --disable-doc --enable-pic --extra-cflags='-arch x86_64 -mios-simulator-version-min=6.0' --extra-ldflags='-arch x86_64 -mios-simulator-version-min=6.0' --prefix=/Users/lxh/Desktop/FFmpeg-iOS-build-script-master/thin/x86_64
avcodec configuration: --target-os=darwin --arch=x86_64 --cc='xcrun -sdk iphonesimulator clang' --enable-cross-compile --disable-debug --disable-programs --disable-doc --enable-pic --extra-cflags='-arch x86_64 -mios-simulator-version-min=6.0' --extra-ldflags='-arch x86_64 -mios-simulator-version-min=6.0' --prefix=/Users/lxh/Desktop/FFmpeg-iOS-build-script-master/thin/x86_64
avformat configuration: --target-os=darwin --arch=x86_64 --cc='xcrun -sdk iphonesimulator clang' --enable-cross-compile --disable-debug --disable-programs --disable-doc --enable-pic --extra-cflags='-arch x86_64 -mios-simulator-version-min=6.0' --extra-ldflags='-arch x86_64 -mios-simulator-version-min=6.0' --prefix=/Users/lxh/Desktop/FFmpeg-iOS-build-script-master/thin/x86_64
avdevice configuration: --target-os=darwin --arch=x86_64 --cc='xcrun -sdk iphonesimulator clang' --enable-cross-compile --disable-debug --disable-programs --disable-doc --enable-pic --extra-cflags='-arch x86_64 -mios-simulator-version-min=6.0' --extra-ldflags='-arch x86_64 -mios-simulator-version-min=6.0' --prefix=/Users/lxh/Desktop/FFmpeg-iOS-build-script-master/thin/x86_64
avfilter configuration: --target-os=darwin --arch=x86_64 --cc='xcrun -sdk iphonesimulator clang' --enable-cross-compile --disable-debug --disable-programs --disable-doc --enable-pic --extra-cflags='-arch x86_64 -mios-simulator-version-min=6.0' --extra-ldflags='-arch x86_64 -mios-simulator-version-min=6.0' --prefix=/Users/lxh/Desktop/FFmpeg-iOS-build-script-master/thin/x86_64
swscale configuration: --target-os=darwin --arch=x86_64 --cc='xcrun -sdk iphonesimulator clang' --enable-cross-compile --disable-debug --disable-programs --disable-doc --enable-pic --extra-cflags='-arch x86_64 -mios-simulator-version-min=6.0' --extra-ldflags='-arch x86_64 -mios-simulator-version-min=6.0' --prefix=/Users/lxh/Desktop/FFmpeg-iOS-build-script-master/thin/x86_64
swresample configuration: --target-os=darwin --arch=x86_64 --cc='xcrun -sdk iphonesimulator clang' --enable-cross-compile --disable-debug --disable-programs --disable-doc --enable-pic --extra-cflags='-arch x86_64 -mios-simulator-version-min=6.0' --extra-ldflags='-arch x86_64 -mios-simulator-version-min=6.0' --prefix=/Users/lxh/Desktop/FFmpeg-iOS-build-script-master/thin/x86_64
libavutil 55. 17.103 / 55. 17.103
libavcodec 57. 24.102 / 57. 24.102
libavformat 57. 25.100 / 57. 25.100
libavdevice 57. 0.101 / 57. 0.101
libavfilter 6. 31.100 / 6. 31.100
libswscale 4. 0.100 / 4. 0.100
libswresample 2. 0.101 / 2. 0.101
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Users/daiyangyang/Library/Developer/CoreSimulator/Devices/02A8BC3F-5E46-453A-A3B4-A42563C518EA/data/Containers/Bundle/Application/4E0BB47F-5D3E-42A3-BC76-2D7D03657870/去水印.app/logo.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2mp41
encoder : Lavf57.25.100
Duration: 00:02:31.37, start: 0.023220, bitrate: 472 kb/s
Stream #0:0(und): Video: mpeg4 (Simple Profile) (mp4v / 0x7634706D), yuv420p, 640x352 [SAR 1:1 DAR 20:11], 338 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 24k tbc (default)
Metadata:
handler_name : VideoHandler
Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 129 kb/s (default)
Metadata:
handler_name : SoundHandler
[AVFilterGraph @ 0x7fbabb519e00] No such filter: 'delogo'
Error opening filters!I integrated FFmpeg by "FFmpeg-iOS-build-script"(https://github.com/kewlbear/FFmpeg-iOS-build-script)
-
Converting and Compressing a Video with FFmpeg
29 avril 2019, par Supercoder54551I’m using FFmpeg to convert and compress a video. Everything converts/compresses fine, but my video has no sound when I try to play it on a mobile device. But it has sound when I play it on a desktop. I don’t know if this has to do with the codec that I am using, I don’t know. Can someone help me ? I appreciate it. Thank you.
The format that I am using in FFmpeg :
$request->video->move(public_path('/app'), $filename);
$name_file=uniqid().'intro_video.mp4';
$ffp=FFMpeg::open($filename)
->addFilter(function ($filters) {
$filters->resize(new \FFMpeg\Coordinate\Dimension(640, 480));
})
->export()
->toDisk('s3')
->inFormat(new \FFMpeg\Format\Audio\Aac)
->save($name_file);