
Recherche avancée
Autres articles (107)
-
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (8563)
-
Handling an arbitrary number of start and stop time pairings to cut a movie file down
9 juin 2019, par KieranI am writing a function that takes a list of tuples and a file path string as arguments and outputs a cut down video that only includes the frames that fall inside the start/stop pairings provided.
I’m getting stuck because I am not sure whether the .trim() method of the ’infile’ object is altering the existing object or or creating a new one or doing something else entirely.
the list of start/stop frame pairings can be arbitrarily long, every example I have found has been for a specific number of start and stop pairings and I can’t find anything describing what data structure needs to be passed back to ffmpeg.concat().
My code is displayed below :
import ffmpeg
frameStamps = [(50,75),(120,700),(1250,1500)]
videoFilePath = 'C:/Users/Kieran/Videos/testMovie.mp4'
outputFolder = 'C:/Users/Kieran/Videos/'
def slice_video(frameStamps, videoFilePath, outputFolder):
originalFile = ffmpeg.input(videoFilePath)
for stamp in frameStamps:
ffmpeg.concat(originalFile.trim(start_frame=stamp[0], end_frame=stamp[1]))
ffmpeg.output(outputFolder + 'testoutput.mp4')
ffmpeg.run()
slice_video(frameStamps, videoFilePath, outputFolder)Now I am able to get the following when I individually print out originalFile.trim() which are getting recognised in the console as "FilterableStream" objects
trim(end_frame=75, start_frame=50)[None] <29b4fb0736ec>
trim(end_frame=700, start_frame=120)[None] <c66c4e1a48f5>
trim(end_frame=1500, start_frame=1250)[None] <13e0697a5288>
</c66c4e1a48f5>and I have tried passing them back as a list, dictionary and tuple and haven’t been able to get it working
Output Errors :
File "C:/Users/Kieran/Example.py", line 21, in slice_video
ffmpeg.output(outputFolder + 'testoutput.mp4')
File "C:\ProgramData\Anaconda3\lib\site-packages\ffmpeg\_ffmpeg.py", line 94, in output
return OutputNode(streams, output.__name__, kwargs=kwargs).stream()
File "C:\ProgramData\Anaconda3\lib\site-packages\ffmpeg\nodes.py", line 282, in __init__
kwargs=kwargs
File "C:\ProgramData\Anaconda3\lib\site-packages\ffmpeg\nodes.py", line 170, in __init__
self.__check_input_len(stream_map, min_inputs, max_inputs)
File "C:\ProgramData\Anaconda3\lib\site-packages\ffmpeg\nodes.py", line 149, in __check_input_len
raise ValueError('Expected at least {} input stream(s); got {}'.format(min_inputs, len(stream_map)))
ValueError: Expected at least 1 input stream(s); got 0 -
cap.isOpened() : returns false in CentOS for Python 3 and OpenCV 3.1.0
29 octobre 2017, par Mona JalalSo cap from opencv 3 doesn’t work in CentOS. I had no problem in OSX or Windows 7 which I tried initially.
Here is the example code :import cv2
cap = cv2.VideoCapture('/home/grad3/jalal/PycharmProjects/hw4_cs585/Concession_LAN_800k.mp4',cv2.CAP_FFMPEG)
if not cap.isOpened():
print('not opened')
while True:
ret,frame = cap.read()
if ret == False:
print('frame empty')
break
cv2.imshow('frame', frame)
if cv2.waitKey(1) == ord('q'):
breakAnd I get :
/usr/local/anaconda3/bin/python /home/grad3/jalal/PycharmProjects/hw4_cs585/test.py
not opened
frame empty
Process finished with exit code 0I can open the video using ffplay vid_name and also here is the result of https://pastebin.com/YGk2DDCi here https://pastebin.com/HSyHSsEZ (ffmpeg codecs). How should I fix this ?
I have opencv 3.1.0 and here’s some sys info.
$ uname -a
Linux goku.bu.edu 3.10.0-693.5.2.el7.x86_64 #1 SMP Fri Oct 20 20:32:50 UTC 2017 x86_64 x86_64 x86_64 GNU/Linuxand
$ lsb_release -a
LSB Version: :core-4.1-amd64:core-4.1-noarch
Distributor ID: CentOS
Description: CentOS Linux release 7.4.1708 (Core)
Release: 7.4.1708
Codename: Core
cv2. getBuildInformation()
General configuration for OpenCV 3.1.0 =====================================
Version control: unknown
Platform:
Host: Linux 4.8.0-46-generic x86_64
CMake: 3.6.3
CMake generator: Unix Makefiles
CMake build tool: /usr/bin/gmake
Configuration: Release
C/C++:
Built as dynamic libs?: YES
C++ Compiler: /opt/rh/devtoolset-2/root/usr/bin/c++ (ver 4.8.2)
C++ flags (Release): -I/cs/software/anaconda3/include -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wno-narrowing -Wno-delete-non-virtual-dtor -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -fvisibility-inlines-hidden -fopenmp -O3 -DNDEBUG -DNDEBUG
C++ flags (Debug): -I/cs/software/anaconda3/include -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wno-narrowing -Wno-delete-non-virtual-dtor -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -fvisibility-inlines-hidden -fopenmp -g -O0 -DDEBUG -D_DEBUG
C Compiler: /opt/rh/devtoolset-2/root/usr/bin/cc
C flags (Release): -I/cs/software/anaconda3/include -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wno-narrowing -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -fopenmp -O3 -DNDEBUG -DNDEBUG
C flags (Debug): -I/cs/software/anaconda3/include -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wno-narrowing -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -fopenmp -g -O0 -DDEBUG -D_DEBUG
Linker flags (Release):
Linker flags (Debug):
Precompiled headers: YES
Extra dependencies: /cs/software/anaconda3/lib/libjpeg.so /cs/software/anaconda3/lib/libpng.so /cs/software/anaconda3/lib/libtiff.so /cs/software/anaconda3/lib/libhdf5.so /usr/lib64/librt.so /usr/lib64/libpthread.so /cs/software/anaconda3/lib/libz.so /usr/lib64/libdl.so /usr/lib64/libm.so dl m pthread rt
3rdparty dependencies: libwebp libjasper IlmImf libprotobuf
OpenCV modules:
To be built: core flann hdf imgproc ml photo reg surface_matching video dnn fuzzy imgcodecs shape videoio highgui objdetect plot superres xobjdetect xphoto bgsegm bioinspired dpm face features2d line_descriptor saliency text calib3d ccalib datasets rgbd stereo structured_light tracking videostab xfeatures2d ximgproc aruco optflow stitching python3
Disabled: world contrib_world
Disabled by dependency: -
Unavailable: cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev java python2 ts viz cvv matlab sfm
GUI:
QT: NO
GTK+: NO
GThread : NO
GtkGlExt: NO
OpenGL support: NO
VTK support: NO
Media I/O:
ZLib: /cs/software/anaconda3/lib/libz.so (ver 1.2.8)
JPEG: /cs/software/anaconda3/lib/libjpeg.so (ver 80)
WEBP: build (ver 0.3.1)
PNG: /cs/software/anaconda3/lib/libpng.so (ver 1.6.27)
TIFF: /cs/software/anaconda3/lib/libtiff.so (ver 42 - 4.0.6)
JPEG 2000: build (ver 1.900.1)
OpenEXR: build (ver 1.7.1)
GDAL: NO
Video I/O:
DC1394 1.x: NO
DC1394 2.x: NO
FFMPEG: NO
codec: NO
format: NO
util: NO
swscale: NO
resample: NO
gentoo-style: NO
GStreamer: NO
OpenNI: NO
OpenNI PrimeSensor Modules: NO
OpenNI2: NO
PvAPI: NO
GigEVisionSDK: NO
UniCap: NO
UniCap ucil: NO
V4L/V4L2: YES/YES
XIMEA: NO
Xine: NO
gPhoto2: NO
Parallel framework: OpenMP
Other third-party libraries:
Use IPP: 9.0.1 [9.0.1]
at: /opt/conda/conda-bld/opencv_1491943704081/work/opencv-3.1.0/3rdparty/ippicv/unpack/ippicv_lnx
Use IPP Async: NO
Use VA: NO
Use Intel VA-API/OpenCL: NO
Use Eigen: YES (ver 3.2.8)
Use Cuda: NO
Use OpenCL: NO
Use custom HAL: NO
Python 2:
Interpreter: (ver 3.5.3)
Python 3:
Interpreter: /cs/software/anaconda3/bin/python (ver 3.5.3)
Libraries: /cs/software/anaconda3/lib/libpython3.5m.so (ver 3.5.3)
numpy: /cs/software/anaconda3/lib/python3.5/site-packages/numpy/core/include (ver 1.12.1)
packages path: /cs/software/anaconda3/lib/python3.5/site-packages
Python (for build):
Java:
ant: NO
JNI: NO
Java wrappers: NO
Java tests: NO
Matlab: NO
Tests and samples:
Tests: NO
Performance tests: NO
C/C++ Examples: NO
Install path: /cs/software/anaconda3
cvconfig.h is in: /opt/conda/conda-bld/opencv_1491943704081/work/opencv-3.1.0/build
-----------------------------------------------------------------UPDATE : tried .avi and .flv formats and the same problem !
-
overlay movie.mov over an image file using AVCONV OR FFMPEG
6 février 2014, par user1087179I am trying to overlay transparent mov or flv over an image.
I am open to both options using ffmpeg or avconv.
here is my cmd :
ffmpeg -i bg.png -i input.mov -vf \
'[0:v]setpts=PTS-STARTPTS, pad=iw*2:ih[bg]; \
[1:v]setpts=PTS-STARTPTS,scale=720:400[fg]; [bg][fg]overlay=w' -vf yadif -pix_fmt rgba -y -vcodec qtrle -an output.movI Get this :
ffmpeg version 0.8.9-4:0.8.9-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav developers
built on Nov 9 2013 19:08:00 with gcc 4.6.3
*** THIS PROGRAM IS DEPRECATED ***
This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
Input #0, image2, from '/home/socialvideos/public_html/public/images/blue_bg.png':
Duration: 00:00:00.04, start: 0.000000, bitrate: N/A
Stream #0.0: Video: png, rgb24, 720x400, 25 tbr, 25 tbn, 25 tbc
Input #1, mov,mp4,m4a,3gp,3g2,mj2, from '/home/socialvideos/public_html/actor/opening/1.mov':
Metadata:
major_brand : qt
minor_version : 537199360
compatible_brands: qt
creation_time : 2014-01-22 18:12:38
Duration: 00:00:09.28, start: 0.000000, bitrate: 119710 kb/s
Stream #1.0(eng): Video: qtrle, bgra, 1280x720, 120236 kb/s, PAR 1280:1280 DAR 16:9, 25 fps, 25 tbr, 25 tbn, 25 tbc
Metadata:
creation_time : 2014-01-22 18:12:38
Stream #1.1(eng): Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s
Metadata:
creation_time : 2014-01-22 18:12:38
Stream #1.2(eng): Data: tmcd / 0x64636D74, 0 kb/s
Metadata:
creation_time : 2014-01-22 18:12:47
Incompatible pixel format 'rgba' for codec 'qtrle', auto-selecting format 'rgb24'
[buffer @ 0x10cf8c0] w:1280 h:720 pixfmt:bgra
[yadif @ 0x10c8980] mode:0 parity:-1 auto_enable:0
[avsink @ 0x10c8400] auto-inserting filter 'auto-inserted scaler 0' between the filter 'Parsed filter 0 yadif' and the filter 'out'
[yadif @ 0x10c8980] auto-inserting filter 'auto-inserted scaler 1' between the filter 'src' and the filter 'Parsed filter 0 yadif'
[scale @ 0x10cc9a0] w:1280 h:720 fmt:bgra -> w:1280 h:720 fmt:yuv420p flags:0x4
[scale @ 0x10cbdc0] w:1280 h:720 fmt:yuv420p -> w:1280 h:720 fmt:rgb24 flags:0x4
Output #0, mov, to 'out.mov':
Metadata:
encoder : Lavf53.21.1
Stream #0.0(eng): Video: qtrle, rgb24, 1280x720 [PAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 25 tbn, 25 tbc
Metadata:
creation_time : 2014-01-22 18:12:38
Stream mapping:
Stream #1.0 -> #0.0
Press ctrl-c to stop encoding
frame= 2 fps= 0 q=0.0 size= 654kB time=0.08 bitrate=66996.3kbits/s
frame= 5 fps= 4 q=0.0 size= 1213kB time=0.20 bitrate=49692.2kbits/s
frame= 8 fps= 4 q=0.0 size= 2068kB time=0.32 bitrate=52952.9kbits/s
frame= 10 fps= 4 q=0.0 size= 2826kB time=0.40 bitrate=57880.0kbits/s
frame= 12 fps= 4 q=0.0 size= 3621kB time=0.48 bitrate=61805.2kbits/s
frame= 14 fps= 4 q=0.0 size= 4433kB time=0.56 bitrate=64846.9kbits/s
frame= 17 fps= 4 q=0.0 size= 5598kB time=0.68 bitrate=67435.6kbits/s
frame= 19 fps= 4 q=0.0 size= 6368kB time=0.76 bitrate=68643.7kbits/s
frame= 21 fps= 4 q=0.0 size= 7145kB time=0.84 bitrate=69683.8kbits/s
frame= 23 fps= 4 q=0.0 size= 7901kB time=0.92 bitrate=70352.7kbits/s
frame= 26 fps= 4 q=0.0 size= 9179kB time=1.04 bitrate=72298.4kbits/s
frame= 28 fps= 4 q=0.0 size= 9743kB time=1.12 bitrate=71260.9kbits/s
frame= 30 fps= 4 q=0.0 size= 10562kB time=1.20 bitrate=72100.4kbits/s
frame= 32 fps= 4 q=0.0 size= 11375kB time=1.28 bitrate=72802.4kbits/s
frame= 34 fps= 4 q=0.0 size= 12162kB time=1.36 bitrate=73256.3kbits/s
frame= 37 fps= 4 q=0.0 size= 13404kB time=1.48 bitrate=74190.5kbits/s
frame= 39 fps= 4 q=0.0 size= 14080kB time=1.56 bitrate=73936.2kbits/s
frame= 41 fps= 4 q=0.0 size= 14763kB time=1.64 bitrate=73744.3kbits/s
frame= 44 fps= 4 q=0.0 size= 15690kB time=1.76 bitrate=73030.4kbits/s
frame= 47 fps= 4 q=0.0 size= 16660kB time=1.88 bitrate=72595.6kbits/s
frame= 49 fps= 4 q=0.0 size= 17418kB time=1.96 bitrate=72798.4kbits/s
frame= 51 fps= 4 q=0.0 size= 18060kB time=2.04 bitrate=72524.8kbits/s
frame= 54 fps= 4 q=0.0 size= 18805kB time=2.16 bitrate=71320.3kbits/s
frame= 56 fps= 4 q=0.0 size= 19498kB time=2.24 bitrate=71305.2kbits/s
frame= 58 fps= 4 q=0.0 size= 20178kB time=2.32 bitrate=71247.7kbits/s
frame= 60 fps= 4 q=0.0 size= 20892kB time=2.40 bitrate=71310.3kbits/s
frame= 63 fps= 4 q=0.0 size= 22028kB time=2.52 bitrate=71609.8kbits/s
frame= 65 fps= 4 q=0.0 size= 22729kB time=2.60 bitrate=71613.6kbits/s
frame= 68 fps= 4 q=0.0 size= 23827kB time=2.72 bitrate=71762.8kbits/s
frame= 71 fps= 4 q=0.0 size= 24865kB time=2.84 bitrate=71724.5kbits/s
frame= 74 fps= 4 q=0.0 size= 26029kB time=2.96 bitrate=72035.8kbits/s
frame= 76 fps= 4 q=0.0 size= 26746kB time=3.04 bitrate=72074.2kbits/s
frame= 79 fps= 4 q=0.0 size= 27642kB time=3.16 bitrate=71659.3kbits/s
frame= 82 fps= 4 q=0.0 size= 28743kB time=3.28 bitrate=71787.0kbits/s
frame= 85 fps= 4 q=0.0 size= 29929kB time=3.40 bitrate=72111.4kbits/s
frame= 87 fps= 4 q=0.0 size= 30602kB time=3.48 bitrate=72037.4kbits/s
frame= 89 fps= 4 q=0.0 size= 31242kB time=3.56 bitrate=71892.2kbits/s
frame= 92 fps= 4 q=0.0 size= 32091kB time=3.68 bitrate=71437.1kbits/s
frame= 95 fps= 4 q=0.0 size= 32972kB time=3.80 bitrate=71080.2kbits/s
frame= 98 fps= 4 q=0.0 size= 34038kB time=3.92 bitrate=71132.0kbits/s
frame= 101 fps= 4 q=0.0 size= 35037kB time=4.04 bitrate=71046.2kbits/s
frame= 104 fps= 4 q=0.0 size= 35901kB time=4.16 bitrate=70697.3kbits/s
frame= 107 fps= 4 q=0.0 size= 36980kB time=4.28 bitrate=70780.7kbits/s
frame= 109 fps= 4 q=0.0 size= 37800kB time=4.36 bitrate=71022.0kbits/s
frame= 111 fps= 4 q=0.0 size= 38488kB time=4.44 bitrate=71011.5kbits/s
frame= 114 fps= 4 q=0.0 size= 39415kB time=4.56 bitrate=70808.9kbits/s
frame= 117 fps= 4 q=0.0 size= 40404kB time=4.68 bitrate=70725.0kbits/s
frame= 119 fps= 4 q=0.0 size= 41076kB time=4.76 bitrate=70691.3kbits/s
frame= 121 fps= 4 q=0.0 size= 41885kB time=4.84 bitrate=70892.5kbits/s
frame= 123 fps= 4 q=0.0 size= 42622kB time=4.92 bitrate=70967.6kbits/s
frame= 125 fps= 4 q=0.0 size= 43368kB time=5.00 bitrate=71054.0kbits/s
frame= 127 fps= 4 q=0.0 size= 44161kB time=5.08 bitrate=71214.6kbits/s
frame= 130 fps= 4 q=0.0 size= 45070kB time=5.20 bitrate=71002.5kbits/s
frame= 132 fps= 4 q=0.0 size= 45782kB time=5.28 bitrate=71032.2kbits/s
frame= 134 fps= 4 q=0.0 size= 46599kB time=5.36 bitrate=71220.3kbits/s
frame= 136 fps= 4 q=0.0 size= 47270kB time=5.44 bitrate=71183.8kbits/s
frame= 138 fps= 4 q=0.0 size= 47865kB time=5.52 bitrate=71034.5kbits/s
frame= 140 fps= 4 q=0.0 size= 48449kB time=5.60 bitrate=70874.3kbits/s
frame= 142 fps= 4 q=0.0 size= 49013kB time=5.68 bitrate=70689.4kbits/s
frame= 144 fps= 4 q=0.0 size= 49613kB time=5.76 bitrate=70560.8kbits/s
frame= 147 fps= 4 q=0.0 size= 50683kB time=5.88 bitrate=70610.9kbits/s
frame= 149 fps= 4 q=0.0 size= 51231kB time=5.96 bitrate=70417.5kbits/s
frame= 151 fps= 4 q=0.0 size= 51734kB time=6.04 bitrate=70166.0kbits/s
frame= 153 fps= 4 q=0.0 size= 52097kB time=6.12 bitrate=69734.9kbits/s
frame= 155 fps= 4 q=0.0 size= 52591kB time=6.20 bitrate=69487.4kbits/s
frame= 157 fps= 4 q=0.0 size= 53374kB time=6.28 bitrate=69624.1kbits/s
frame= 159 fps= 4 q=0.0 size= 54086kB time=6.36 bitrate=69665.9kbits/s
frame= 161 fps= 4 q=0.0 size= 54805kB time=6.44 bitrate=69715.3kbits/s
frame= 163 fps= 4 q=0.0 size= 55574kB time=6.52 bitrate=69826.0kbits/s
frame= 166 fps= 4 q=0.0 size= 56683kB time=6.64 bitrate=69932.4kbits/s
frame= 168 fps= 4 q=0.0 size= 57421kB time=6.72 bitrate=69999.1kbits/s
frame= 170 fps= 4 q=0.0 size= 58230kB time=6.80 bitrate=70150.4kbits/s
frame= 173 fps= 4 q=0.0 size= 59357kB time=6.92 bitrate=70268.0kbits/s
frame= 176 fps= 4 q=0.0 size= 60482kB time=7.04 bitrate=70378.7kbits/s
frame= 179 fps= 4 q=0.0 size= 61346kB time=7.16 bitrate=70187.7kbits/s
frame= 181 fps= 4 q=0.0 size= 62171kB time=7.24 bitrate=70345.9kbits/s
frame= 184 fps= 4 q=0.0 size= 63299kB time=7.36 bitrate=70454.0kbits/s
frame= 186 fps= 4 q=0.0 size= 64031kB time=7.44 bitrate=70502.6kbits/s
frame= 188 fps= 4 q=0.0 size= 64701kB time=7.52 bitrate=70482.4kbits/s
frame= 191 fps= 4 q=0.0 size= 65731kB time=7.64 bitrate=70479.9kbits/s
frame= 194 fps= 4 q=0.0 size= 66823kB time=7.76 bitrate=70543.2kbits/s
frame= 197 fps= 4 q=0.0 size= 67568kB time=7.88 bitrate=70243.5kbits/s
frame= 200 fps= 4 q=0.0 size= 68378kB time=8.00 bitrate=70018.6kbits/s
frame= 203 fps= 4 q=0.0 size= 69112kB time=8.12 bitrate=69724.5kbits/s
frame= 205 fps= 4 q=0.0 size= 69872kB time=8.20 bitrate=69804.1kbits/s
frame= 207 fps= 4 q=0.0 size= 70548kB time=8.28 bitrate=69798.2kbits/s
frame= 210 fps= 4 q=0.0 size= 71469kB time=8.40 bitrate=69699.4kbits/s
frame= 213 fps= 4 q=0.0 size= 72386kB time=8.52 bitrate=69599.5kbits/s
frame= 216 fps= 4 q=0.0 size= 73281kB time=8.64 bitrate=69480.8kbits/s
frame= 219 fps= 4 q=0.0 size= 74241kB time=8.76 bitrate=69427.7kbits/s
frame= 222 fps= 4 q=0.0 size= 75010kB time=8.88 bitrate=69198.2kbits/s
frame= 225 fps= 4 q=0.0 size= 75861kB time=9.00 bitrate=69050.0kbits/s
frame= 227 fps= 4 q=0.0 Lsize= 76442kB time=9.08 bitrate=68966.0kbits/s
video:76439kB audio:0kB global headers:0kB muxing overhead 0.003299%However the video generated does not have background image and have white color instead. please help..