
Advanced search
Medias (91)
-
MediaSPIP Simple : futur thème graphique par défaut?
26 September 2013, by
Updated: October 2013
Language: français
Type: Video
-
avec chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
sans chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
config chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
SPIP - plugins - embed code - Exemple
2 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
GetID3 - Bloc informations de fichiers
9 April 2013, by
Updated: May 2013
Language: français
Type: Picture
Other articles (106)
-
MediaSPIP 0.1 Beta version
25 April 2011, byMediaSPIP 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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 February 2011, byMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 April 2011, byMediaSPIP 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 (...)
On other websites (12431)
-
FFMPEG build in window for window 32 bit Enable to link with h264lib
10 April 2018, by P AkhtarCommand in msys32 is
./configure —prefix=ffmpeg/ —toolchain=msvc —disable-yasm —enable-shared —enable-static —enable-cuvid —enable-nvenc —enable-gpl —enable-encoder=png —extra-cflags=c:/x264/include\ —extra-ldflags=c:/x264/lib\ —enable-libx264
Problem cflags and Lflags i tried different way to set path but enable to build
-
How to not process any personal data with Matomo and what it means for you
22 April 2018, by InnoCraftDisclaimer: this blog post has been written by digital analysts, not lawyers. The purpose of this article is to explain how to not process any personal data with Matomo in order to avoid going through the GDPR compliance process with Matomo analytics. This work comes from our interpretation of different sources: the official GDPR text and the UK privacy commission: ICO resources. It cannot be considered as a professional legal advice. So as GDPR, this information is subject to change. GDPR may be also known as RGPD in French, Spanish, Portuguese, Datenschutz-Grundverordnung, DS-GVO in German, Algemene verordening gegevensbescherming in Dutch, Regolamento generale sulla protezione dei dati in Italian.
Are you looking for a way to not process any personal data with Matomo? If the answer is yes, you are at the right place. From our understanding, if you are not processing personal data, then you shouldn’t be concerned about GDPR. Our inspiration came from this official reference:
“The principles of data protection should therefore not apply to anonymous information, namely information which does not relate to an identified or identifiable natural person or to personal data rendered anonymous in such a manner that the data subject is not or no longer identifiable. This Regulation does not therefore concern the processing of such anonymous information, including for statistical or research purposes.“
In this blog post we are going to see how you can configure Matomo in order to not process any personal data and what the consequences are.
Which data is considered as personal according to GDPR?
From: eur-lex.europa.eu
(1) “‘personal data’ means any information relating to an identified or identifiable natural person (‘data subject’); an identifiable natural person is one who can be identified, directly or indirectly, in particular by reference to an identifier such as a name, an identification number, location data, an online identifier or to one or more factors specific to the physical, physiological, genetic, mental, economic, cultural or social identity of that natural person;”
(30) “Natural persons may be associated with online identifiers provided by their devices, applications, tools and protocols, such as internet protocol addresses, cookie identifiers or other identifiers such as radio frequency identification tags. This may leave traces which, in particular when combined with unique identifiers and other information received by the servers, may be used to create profiles of the natural persons and identify them.”
So according to your Matomo configuration, it may leave some traces within the following data:
- IP addresses
- Cookies identifiers
- Page URL or page titles
- User ID and Custom “personal” data
- Ecommerce order IDs
- Location
- Heatmaps & Session Recordings
Let’s see each of them in more detail.
1. IP addresses
IP addresses can indirectly identify an individual. It can also give a good approximation of an individual’s location.
IP addresses are therefore considered as personal data which means you need to anonymize them. To do so, a feature is available within Matomo, where you can anonymize the IP. We recommend you to anonymize at least the last two bytes:
See our configuration guide for more information
What are the consequences of using this feature?
When applying IP anonymization on two bytes, you will no longer be able to see the full IP in the UI.
Moreover, there is a small chance that 2 different visitors with the same device and software configuration will be identified as the same visitor if the anonymised IP address is the same for both.
2. Cookies
It is not clear for us yet if all cookies are considered equal under GDPR. At this stage it is too early to make a definite decision.
Did you know? Matomo lets you optionally disable the creation of cookies by adding an extra line of code to your tracking code see below.
See our configuration guide for more information
What are the consequences of using this feature?
Matomo is using a few first party cookies, and the following cookies may hold personal data:
- _pk_id : contains a visitor id used to identify unique visitors
- _pk_ref : to identify from where they came from
If Matomo cannot set cookies, it will use a technique called Fingerprint. It is based on several metadata such as the operating system, browser, browser plugins, IP address, browser language; just to name a few to identify a unique visitor. As this feature is less accurate than the one using cookies, the number of visitors and visits will be affected.
3. Page URLs and page titles
URLs are not mentioned within the official GDPR text. However, we know that according to the different CMS you use, some of them may have URLs including personal identifiers.
For example:
As a result, you need to find a way to anonymize this data.
There are several ways you can perform this action according to your website. If your website is adding the personal data through query parameters, you can define a rule to exclude them from Matomo.
If the personal data are not included within query parameters, you can use the “setCustomURL” feature and write your code as follow:
See our developer documentation for more information
If you are also processing personal data within the title tag, you can use the following function: “setDocumentTitle”.
What are the consequences of using this feature?
By anonymizing the URLs containing personal data, some of your URLs will be grouped together.
4. User ID and custom personal data
User ID is a feature (a tracking code needs to be added) which allows you to identify the same user across different devices.
A User ID needs a corresponding database in order to link a user across different devices, it can be an email, a username, a name, a random number… All those data are either direct or non direct online identifiers and are therefore under the scope of GDPR.
It will be the same situation if you are using custom variables and/or custom dimensions in order to push personal data to the system.
To continue using the User ID feature but not recording personal data, you can consider using a hash function which will anonymize/convert your actual User ID into something like “3jrj3j34434834urj33j3”.
Alternatively, you can enable the feature “Anonymise User IDs”. This feature will be available starting in Matomo 3.5.0:
What are the consequences of using this feature?
Under GDPR, User ID is personal data. Anonymizing the User ID using a hash function or our built-in functionality make the User Id pseudo-anonymous, which means it can’t be easily identified to a specific user. As a result, you will still get accurate visits and unique visitors metrics, and the Visitor Profile, but without tracking the original User ID which is personal data.
5. Ecommerce order IDs
Order IDs are the reference number assigned to the products/services bought by your customers. As this information can be crossed with your internal database, it is considered as an online identifier and is therefore under the scope of GDPR. As for User ID, you can anonymize order IDs using our built-in functionality to Anonymise Order IDs (see section 4. about User Id).
What are the consequences of anonymizing order ID?
It really depends on your former use of order IDs. If you were not using them in the past then you should not see any difference.
6. Location
Based on the IP address of a visitor, Matomo can detect the visitors location. Location data is problematic for privacy as this technology has become quite accurate and can detect not only the city a visitor is from, but sometimes an even more precise position of a visitor.
In order to not leave any accurate traces, we strongly recommend you to enable the IP anonymization feature. Next, you need to enable the setting “Also use the anonymized IP address when enriching visits”. You find this setting directly below the IP anonymization. This is important as otherwise the full IP address will be used to geolocate a visitor.
What are the consequences of anonymizing location data?
The more bytes you anonymize from the IP, the more anonymized your location will be. When you remove two bytes as suggested, the city and region location reports will not be as accurate. In some cases even the country may not be detected correctly anymore.
7. Heatmaps & Session Recordings
Heatmaps & Session Recording is a premium feature in Matomo allowing you to see where users click, hover, type and scroll. With session recordings you can then replay their actions in a video.
Heatmaps & Session Recordings are under the scope of GDPR as they can disclose in some specific cases (for example: filling a contact form) personal data:
To avoid this, Matomo will anonymize all keystrokes which a user enters into a form field unless you specifically whitelist a field. Many fields that could contain personal data, such as a credit card, phone number, email address, password, social security number, and more are always anonymized and not recorded.
See our configuration guide for more information
Note that a page may still show personal information within the page as part of regular content (not a form element). For example an address, or the profile page of a forum user. We have added a feature which allows you to set an HTML attribute “data-matomo-mask” to anonymize any personal content shown in the UI.
What are the consequences of using this feature?
Mainly, you will not be able to see in plain text what people are entering into your forms.
What should you do with past data?
Once more, we have to say that we are not lawyers. So do not take our answers as legal advice. From: ec.europa.eu/newsroom/article29/document.cfm?doc_id=50053
“For example, as the GDPR requires that a controller must be able to demonstrate that valid consent was obtained, all presumed consents of which no references are kept will automatically be below the consent standard of the GDPR and will need to be renewed.”
Our interpretation is that, if you were previously relying on consent, unless you can demonstrate that valid consent was obtained, you need to get the consent back (which is almost impossible) or you need to anonymize or remove that data.
To anonymize previously tracked data, we are actively working on a feature to do just that directly within Matomo. Alternatively, you may also set up the deletion of logs after a certain amount of time.
We really hope you enjoyed reading this article. GDPR is still on the go and we are pretty sure you have a lot of questions about it. You probably would like to share our vision about it. So do not hesitate to ask us through our contact form to see how we are interpreting GDPR at Matomo and InnoCraft.
The post How to not process any personal data with Matomo and what it means for you appeared first on Analytics Platform - Matomo.
-
ffmpeg blend filter does not work properly
16 May 2018, by tainguyenI’m doing my android project which uses blend filter to create uncover down video transition. My test device is Samsung S4 (Android version : 4.4.2)
this is my command string :ffmpeg
-loop 1 -t 1 -i img001.jpg
-loop 1 -t 1 -i img002.jpg
-loop 1 -t 1 -i img003.jpg
-loop 1 -t 1 -i img004.jpg
-loop 1 -t 1 -i img005.jpg
-filter_complex
"[1:v][0:v]blend=all_expr='if(lte(Y,N*H/24),A,B)'[b1v];
[2:v][1:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b2v];
[3:v][2:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b3v];
[4:v][3:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b4v];
[0:v][b1v][1:v][b2v][2:v][b3v][3:v][b4v]
[4:v]concat=n=9:v=1:a=0,format=yuv420p[v]" -map "[v]" out_cover_top.mp4 -yThe expected output is that the top image (yellow) will uncover from the top to the bottom of bottom image (red) like this :
I tested in my PC (windows 7) it’s right, but this is what I get in android
My logcat :
onProgress: ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
onProgress: built with gcc 4.8 (GCC)
onProgress: configuration: —target-os=linux —cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- —arch=arm —cpu=cortex-a8 —enable-runtime-cpudetect —sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot —enable-pic —enable-libx264 —enable-libass —enable-libfreetype —enable-libfribidi —enable-libmp3lame —enable-fontconfig —enable-pthreads —disable-debug —disable-ffserver —enable-version3 —enable-hardcoded-tables —disable-ffplay —disable-ffprobe —enable-gpl —enable-yasm —disable-doc —disable-shared —enable-static —pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config —prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a —extra-cflags=’-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all’ —extra-ldflags=’-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie’ —extra-libs=’-lpng -lexpat -lm’ —extra-cxxflags=
onProgress: libavutil 55. 17.103 / 55. 17.103
onProgress: libavcodec 57. 24.102 / 57. 24.102
onProgress: libavformat 57. 25.100 / 57. 25.100
onProgress: libavdevice 57. 0.101 / 57. 0.101
onProgress: libavfilter 6. 31.100 / 6. 31.100
onProgress: libswscale 4. 0.100 / 4. 0.100
onProgress: libswresample 2. 0.101 / 2. 0.101
onProgress: libpostproc 54. 0.100 / 54. 0.100
onProgress: [mjpeg @ 0x43240d90] Changing bps to 8
onProgress: Input #0, image2, from ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/temporary/0.jpg’:
onProgress: Duration: 00:00:00.04, start: 0.000000, bitrate: 4096 kb/s
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 480x480 [SAR 1:1 DAR 1:1], 25 fps, 25 tbr, 25 tbn, 25 tbc
onProgress: [mjpeg @ 0x43242a70] Changing bps to 8
onProgress: Input #1, image2, from ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/temporary/1.jpg’:
onProgress: Duration: 00:00:00.04, start: 0.000000, bitrate: 4971 kb/s
onProgress: Stream #1:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 480x480 [SAR 1:1 DAR 1:1], 25 fps, 25 tbr, 25 tbn, 25 tbc
onProgress: [mjpeg @ 0x43280780] Changing bps to 8
onProgress: Input #2, image2, from ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/temporary/2.jpg’:
onProgress: Duration: 00:00:00.04, start: 0.000000, bitrate: 9413 kb/s
onProgress: Stream #2:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 480x480 [SAR 1:1 DAR 1:1], 25 fps, 25 tbr, 25 tbn, 25 tbc
onProgress: [mjpeg @ 0x43244260] Changing bps to 8
onProgress: Input #3, image2, from ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/temporary/3.jpg’:
onProgress: Duration: 00:00:00.04, start: 0.000000, bitrate: 4096 kb/s
onProgress: Stream #3:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 480x480 [SAR 1:1 DAR 1:1], 25 fps, 25 tbr, 25 tbn, 25 tbc
onProgress: [swscaler @ 0x438292b0] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x438320f0] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x4383af40] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x44044100] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x4404cf50] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x44055d90] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x4405ebe0] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x44067a20] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x44070870] deprecated pixel format used, make sure you did set range correctly
onProgress: [swscaler @ 0x440796b0] deprecated pixel format used, make sure you did set range correctly
onProgress: [libx264 @ 0x43df2fd0] using SAR=1/1
onProgress: [libx264 @ 0x43df2fd0] using cpu capabilities: none!
onProgress: [libx264 @ 0x43df2fd0] profile Constrained Baseline, level 3.0
onProgress: [libx264 @ 0x43df2fd0] 264 - core 148 - H.264/MPEG-4 AVC codec - Copyleft 2003-2015 - http://www.videolan.org/x264.html - options: cabac=0 ref=1 deblock=0:0:0 analyse=0:0 me=dia subme=0 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=0 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=0 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=250 keyint_min=25 scenecut=0 intra_refresh=0 rc=crf mbtree=0 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=0
onProgress: Output #0, mp4, to ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/saves/test.mp4’:
onProgress: Metadata:
onProgress: encoder : Lavf57.25.100
onProgress: Stream #0:0: Video: h264 (libx264) ([33][0][0][0] / 0x0021), yuv420p, 480x480 [SAR 1:1 DAR 1:1], q=-1—1, 25 fps, 12800 tbn, 25 tbc (default)
onProgress: Metadata:
onProgress: encoder : Lavc57.24.102 libx264
onProgress: Side data:
onProgress: unknown side data type 10 (24 bytes)
onProgress: Stream mapping:
onProgress: Stream #0:0 (mjpeg) -> blen>bottom
onProgress: Stream #0:0 (mjpeg) -> concat:in0:v0
onProgress: Stream #1:0 (mjpeg) -> blen>top
onProgress: Stream #1:0 (mjpeg) -> blen>bottom
onProgress: Stream #1:0 (mjpeg) -> concat:in2:v0
onProgress: Stream #2:0 (mjpeg) -> blen>top
onProgress: Stream #2:0 (mjpeg) -> blen>bottom
onProgress: Stream #2:0 (mjpeg) -> concat:in4:v0
onProgress: Stream #3:0 (mjpeg) -> blen>top
onProgress: Stream #3:0 (mjpeg) -> concat:in6:v0
onProgress: format -> Stream #0:0 (libx264)
onProgress: Press [q] to stop, [?] for help
onProgress: frame= 16 fps=0.0 q=12.0 size= 51kB time=00:00:00.36 bitrate=1171.2kbits/s speed=0.685x
onProgress: frame= 29 fps= 25 q=25.0 size= 64kB time=00:00:00.88 bitrate= 593.2kbits/s speed=0.762x
onProgress: frame= 33 fps= 19 q=25.0 size= 72kB time=00:00:01.04 bitrate= 565.8kbits/s speed=0.611x
onProgress: frame= 37 fps= 17 q=16.0 size= 113kB time=00:00:01.20 bitrate= 769.9kbits/s speed=0.537x
onProgress: frame= 41 fps= 15 q=13.0 size= 147kB time=00:00:01.36 bitrate= 886.3kbits/s speed=0.495x
onProgress: frame= 46 fps= 14 q=12.0 size= 180kB time=00:00:01.56 bitrate= 943.1kbits/s speed=0.463x
onProgress: frame= 50 fps= 13 q=12.0 size= 188kB time=00:00:01.72 bitrate= 896.8kbits/s speed=0.439x
onProgress: frame= 77 fps= 17 q=12.0 size= 209kB time=00:00:02.80 bitrate= 610.9kbits/s speed=0.63x
onProgress: frame= 82 fps= 16 q=27.0 size= 213kB time=00:00:03.00 bitrate= 580.6kbits/s speed=0.594x
onProgress: frame= 87 fps= 15 q=17.0 size= 288kB time=00:00:03.20 bitrate= 737.1kbits/s speed=0.566x
onProgress: frame= 91 fps= 15 q=13.0 size= 349kB time=00:00:03.36 bitrate= 851.1kbits/s speed=0.536x
onProgress: frame= 95 fps= 14 q=12.0 size= 407kB time=00:00:03.52 bitrate= 946.2kbits/s speed=0.515x
onProgress: frame= 100 fps= 13 q=12.0 size= 416kB time=00:00:03.72 bitrate= 917.1kbits/s speed=0.501x
onProgress: frame= 128 fps= 16 q=17.0 size= 429kB time=00:00:04.84 bitrate= 725.7kbits/s speed=0.604x
onProgress: frame= 133 fps= 16 q=24.0 size= 438kB time=00:00:05.04 bitrate= 712.4kbits/s speed=0.589x
onProgress: frame= 138 fps= 15 q=14.0 size= 487kB time=00:00:05.24 bitrate= 761.2kbits/s speed=0.577x
onProgress: frame= 142 fps= 15 q=12.0 size= 519kB time=00:00:05.40 bitrate= 787.4kbits/s speed=0.564x
onProgress: frame= 147 fps= 14 q=12.0 size= 545kB time=00:00:05.60 bitrate= 796.5kbits/s speed=0.551x
onProgress: frame= 175 fps= 16 q=12.0 size= 561kB time=00:00:06.72 bitrate= 683.7kbits/s speed=0.619x
onProgress: frame= 175 fps= 16 q=-1.0 Lsize= 566kB time=00:00:07.00 bitrate= 662.9kbits/s speed=0.642x
onProgress: video:565kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhea> 0.262062%
onProgress: [libx264 @ 0x43df2fd0] frame I:1 Avg QP:20.00 size: 28930
onProgress: [libx264 @ 0x43df2fd0] frame P:174 Avg QP:14.14 size: 3155
onProgress: [libx264 @ 0x43df2fd0] mb I I16..4: 100.0% 0.0% 0.0%
onProgress: [libx264 @ 0x43df2fd0] mb P I16..4: 1.7% 0.0% 0.0% P16..4: 28.8% 0.0% 0.0% 0.0% 0.0% skip:69.4%
onProgress: [libx264 @ 0x43df2fd0] coded y,uvDC,uvAC intra: 74.7% 79.5% 49.5% inter: 11.8% 14.3% 5.3%
onProgress: [libx264 @ 0x43df2fd0] i16 v,h,dc,p: 19% 46% 18% 18%
onProgress: [libx264 @ 0x43df2fd0] i8c dc,h,v,p: 26% 46% 17% 11%
onProgress: [libx264 @ 0x43df2fd0] kb/s:660.46
onSuccess: -------------------------
onFinish:Logcat of setSar behavior :
onProgress: ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
onProgress: built with gcc 4.8 (GCC)
onProgress: configuration: —target-os=linux —cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- —arch=arm —cpu=cortex-a8 —enable-runtime-cpudetect —sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot —enable-pic —enable-libx264 —enable-libass —enable-libfreetype —enable-libfribidi —enable-libmp3lame —enable-fontconfig —enable-pthreads —disable-debug —disable-ffserver —enable-version3 —enable-hardcoded-tables —disable-ffplay —disable-ffprobe —enable-gpl —enable-yasm —disable-doc —disable-shared —enable-static —pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config —prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a —extra-cflags=’-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all’ —extra-ldflags=’-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie’ —extra-libs=’-lpng -lexpat -lm’ —extra-cxxflags=
onProgress: libavutil 55. 17.103 / 55. 17.103
onProgress: libavcodec 57. 24.102 / 57. 24.102
onProgress: libavformat 57. 25.100 / 57. 25.100
onProgress: libavdevice 57. 0.101 / 57. 0.101
onProgress: libavfilter 6. 31.100 / 6. 31.100
onProgress: libswscale 4. 0.100 / 4. 0.100
onProgress: libswresample 2. 0.101 / 2. 0.101
onProgress: libpostproc 54. 0.100 / 54. 0.100
onProgress: [mjpeg @ 0x41be8890] Changing bps to 8
onProgress: Input #0, image2, from ’/storage/emulated/0/test.jpg’:
onProgress: Duration: 00:00:00.04, start: 0.000000, bitrate: 16530 kb/s
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 900x900 [SAR 300:300 DAR 1:1], 25 tbr, 25 tbn, 25 tbc
onProgress: [swscaler @ 0x41b1c020] deprecated pixel format used, make sure you did set range correctly
onProgress: Output #0, image2, to ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/temporary/0.jpg’:
onProgress: Metadata:
onProgress: encoder : Lavf57.25.100
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc), 480x480 [SAR 1:1 DAR 1:1], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
onProgress: Metadata:
onProgress: encoder : Lavc57.24.102 mjpeg
onProgress: Side data:
onProgress: unknown side data type 10 (24 bytes)
onProgress: Stream mapping:
onProgress: Stream #0:0 -> #0:0 (mjpeg (native) -> mjpeg (native))
onProgress: Press [q] to stop, [?] for help
onProgress: frame= 1 fps=0.0 q=4.6 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.293x
onProgress: video:20kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhea> unknown
onSuccess: -------------------------
onFinish:
onProgress: ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
onProgress: built with gcc 4.8 (GCC)
onProgress: configuration: —target-os=linux —cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- —arch=arm —cpu=cortex-a8 —enable-runtime-cpudetect —sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot —enable-pic —enable-libx264 —enable-libass —enable-libfreetype —enable-libfribidi —enable-libmp3lame —enable-fontconfig —enable-pthreads —disable-debug —disable-ffserver —enable-version3 —enable-hardcoded-tables —disable-ffplay —disable-ffprobe —enable-gpl —enable-yasm —disable-doc —disable-shared —enable-static —pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config —prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a —extra-cflags=’-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all’ —extra-ldflags=’-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie’ —extra-libs=’-lpng -lexpat -lm’ —extra-cxxflags=
onProgress: libavutil 55. 17.103 / 55. 17.103
onProgress: libavcodec 57. 24.102 / 57. 24.102
onProgress: libavformat 57. 25.100 / 57. 25.100
onProgress: libavdevice 57. 0.101 / 57. 0.101
onProgress: libavfilter 6. 31.100 / 6. 31.100
onProgress: libswscale 4. 0.100 / 4. 0.100
onProgress: libswresample 2. 0.101 / 2. 0.101
onProgress: libpostproc 54. 0.100 / 54. 0.100
onProgress: [mjpeg @ 0x41ffe890] Changing bps to 8
onProgress: Input #0, image2, from ’/storage/emulated/0/test2.jpg’:
onProgress: Duration: 00:00:00.04, start: 0.000000, bitrate: 14981 kb/s
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 720x960 [SAR 72:72 DAR 3:4], 25 tbr, 25 tbn, 25 tbc
onProgress: [swscaler @ 0x420171b0] deprecated pixel format used, make sure you did set range correctly
onProgress: Output #0, image2, to ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/temporary/1.jpg’:
onProgress: Metadata:
onProgress: encoder : Lavf57.25.100
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc), 480x480 [SAR 1:1 DAR 1:1], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
onProgress: Metadata:
onProgress: encoder : Lavc57.24.102 mjpeg
onProgress: Side data:
onProgress: unknown side data type 10 (24 bytes)
onProgress: Stream mapping:
onProgress: Stream #0:0 -> #0:0 (mjpeg (native) -> mjpeg (native))
onProgress: Press [q] to stop, [?] for help
onProgress: frame= 1 fps=0.0 q=5.8 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.428x
onProgress: video:24kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhea> unknown
onSuccess: -------------------------
onFinish:
onProgress: ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
onProgress: built with gcc 4.8 (GCC)
onProgress: configuration: —target-os=linux —cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- —arch=arm —cpu=cortex-a8 —enable-runtime-cpudetect —sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot —enable-pic —enable-libx264 —enable-libass —enable-libfreetype —enable-libfribidi —enable-libmp3lame —enable-fontconfig —enable-pthreads —disable-debug —disable-ffserver —enable-version3 —enable-hardcoded-tables —disable-ffplay —disable-ffprobe —enable-gpl —enable-yasm —disable-doc —disable-shared —enable-static —pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config —prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a —extra-cflags=’-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all’ —extra-ldflags=’-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie’ —extra-libs=’-lpng -lexpat -lm’ —extra-cxxflags=
onProgress: libavutil 55. 17.103 / 55. 17.103
onProgress: libavcodec 57. 24.102 / 57. 24.102
onProgress: libavformat 57. 25.100 / 57. 25.100
onProgress: libavdevice 57. 0.101 / 57. 0.101
onProgress: libavfilter 6. 31.100 / 6. 31.100
onProgress: libswscale 4. 0.100 / 4. 0.100
onProgress: libswresample 2. 0.101 / 2. 0.101
onProgress: libpostproc 54. 0.100 / 54. 0.100
onProgress: [mjpeg @ 0x42dac890] Changing bps to 8
onProgress: Input #0, image2, from ’/storage/emulated/0/test3.jpg’:
onProgress: Duration: 00:00:00.04, start: 0.000000, bitrate: 6901 kb/s
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 500x283, 25 tbr, 25 tbn, 25 tbc
onProgress: [swscaler @ 0x42dcd8a0] deprecated pixel format used, make sure you did set range correctly
onProgress: Output #0, image2, to ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/temporary/2.jpg’:
onProgress: Metadata:
onProgress: encoder : Lavf57.25.100
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc), 480x480 [SAR 1:1 DAR 1:1], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
onProgress: Metadata:
onProgress: encoder : Lavc57.24.102 mjpeg
onProgress: Side data:
onProgress: unknown side data type 10 (24 bytes)
onProgress: Stream mapping:
onProgress: Stream #0:0 -> #0:0 (mjpeg (native) -> mjpeg (native))
onProgress: Press [q] to stop, [?] for help
onProgress: frame= 1 fps=0.0 q=6.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.497x
onProgress: video:46kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhea> unknown
onSuccess: -------------------------
onFinish:
onProgress: ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
onProgress: built with gcc 4.8 (GCC)
onProgress: configuration: —target-os=linux —cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- —arch=arm —cpu=cortex-a8 —enable-runtime-cpudetect —sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot —enable-pic —enable-libx264 —enable-libass —enable-libfreetype —enable-libfribidi —enable-libmp3lame —enable-fontconfig —enable-pthreads —disable-debug —disable-ffserver —enable-version3 —enable-hardcoded-tables —disable-ffplay —disable-ffprobe —enable-gpl —enable-yasm —disable-doc —disable-shared —enable-static —pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config —prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a —extra-cflags=’-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all’ —extra-ldflags=’-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie’ —extra-libs=’-lpng -lexpat -lm’ —extra-cxxflags=
onProgress: libavutil 55. 17.103 / 55. 17.103
onProgress: libavcodec 57. 24.102 / 57. 24.102
onProgress: libavformat 57. 25.100 / 57. 25.100
onProgress: libavdevice 57. 0.101 / 57. 0.101
onProgress: libavfilter 6. 31.100 / 6. 31.100
onProgress: libswscale 4. 0.100 / 4. 0.100
onProgress: libswresample 2. 0.101 / 2. 0.101
onProgress: libpostproc 54. 0.100 / 54. 0.100
onProgress: [mjpeg @ 0x4228a890] Changing bps to 8
onProgress: Input #0, image2, from ’/storage/emulated/0/test.jpg’:
onProgress: Duration: 00:00:00.04, start: 0.000000, bitrate: 16530 kb/s
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 900x900 [SAR 300:300 DAR 1:1], 25 tbr, 25 tbn, 25 tbc
onProgress: [swscaler @ 0x422a31b0] deprecated pixel format used, make sure you did set range correctly
onProgress: Output #0, image2, to ’/storage/emulated/0/com.example.mrtai.test_animationtovideo/temporary/3.jpg’:
onProgress: Metadata:
onProgress: encoder : Lavf57.25.100
onProgress: Stream #0:0: Video: mjpeg, yuvj420p(pc), 480x480 [SAR 1:1 DAR 1:1], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
onProgress: Metadata:
onProgress: encoder : Lavc57.24.102 mjpeg
onProgress: Side data:
onProgress: unknown side data type 10 (24 bytes)
onProgress: Stream mapping:
onProgress: Stream #0:0 -> #0:0 (mjpeg (native) -> mjpeg (native))
onProgress: Press [q] to stop, [?] for help
onProgress: frame= 1 fps=0.0 q=4.6 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.533x
onProgress: video:20kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhea> unknown
onSuccess: -------------------------
onFinish:Help me please.