[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 2c8a298 ffmpeg/web/index: add news describing GSoC 2015 program outcome
ng in a very +different way from most common subtitle formats. It uses a binary +encoding (based on mp4 boxes, naturally) and stores information +separately from the text itself. This requires additional work to track +which parts of the text formatting applies to, and explicitly dealing +with overlapping formatting (which other formats support but Timed +Text does not) so it requires breaking the overlapping sections into +separate non-overlapping ones with different formatting. + + + +Finally, Niklesh had to be careful about not trusting any size +information in the subtitles - and that's no joke: the now infamous +Android stagefright bug was in code for parsing Timed Text subtitles. + + + +All of Niklesh's work is committed and was released in ffmpeg 2.8. + + +libswscale refactoring, mentee: Pedro Arthur, mentors: Michael Niedermayer, Ramiro Polla + + +Pedro Arthur has modularized the vertical and horizontal scalers. +To do this he designed and implemented a generic filter framework +and moved the existing scaler code into it. These changes now allow +easily adding removing, splitting or merging processing steps. +The implementation was benchmarked and several alternatives were +tried to avoid speedloss. + + + +He also added gamma corrected scaling support. +An example to use gamma corrected scaling would be: + + ffmpeg -i input -vf scale=512:384:gamma=1 output + + + + +Pedro has done impressive work considering the short time available, +and he is a FFmpeg committer now. He continues to contribute to +FFmpeg, and has fixed some bugs in libswscale after GSoC has +ended. + + + AAC Encoder Improvements, mentee: Rostislav Pehlivanov, mentor: Claudio Freire + + +Rostislav Pehlivanov has implemented PNS, TNS, I/S coding and main +prediction on the native AAC encoder. Of all those extensions, only +TNS was left in a less-than-usable state, but the implementation has +been pushed (disabled) anyway since it's a good basis for further +improvements. + + + +PNS replaces noisy bands with a single scalefactor representing the +energy of that band, gaining in coding efficiency considerably, and +the quality improvements on low bitrates are impressive for such a +simple feature. + + + +TNS still needs some polishing, but has the potential to reduce coding +artifacts by applying noise shaping in the temporal domain (something +that is a source of annoying, notable distortion on low-entropy +bands). + + + +Intensity Stereo coding (I/S) can double coding efficiency by +exploiting strong correlation between stereo channels, most effective +on pop-style tracks that employ panned mixing. The technique is not as +effective on classic X-Y recordings though. + + + +Finally, main prediction improves coding efficiency by exploiting +correlation among successive frames. While the gains have not been +huge at this point, Rostislav has remained active even after the GSoC, +and is polishing both TNS and main prediction, as well as looking for +further improvements to make. + + + +In the process, the MIPS port of the encoder was broken a few times, +something he's also working to fix. + + + Animated Portable Network Graphics (APNG), mentee: Donny Yang, mentor: Paul B Mahol + + +Donny Yang implemented basic keyframe only APNG encoder as the +qualification task. Later he wrote interframe compression via +various blend modes. The current implementation tries all blend +modes and picks one which takes the smallest amount of memory. + + + +Special care was taken to make sure that the decoder plays +correctly all files found in the wild and that the encoder +produces files that can be played in browsers that support APNG. + + + +During his work he was tasked to fix any encountered bug in the +decoder due to the fact that it doesn't match APNG +specifications. Thanks to this work, a long standing bug in the +PNG decoder has been fixed. + + + +For latter work he plans to continue working on the encoder, +making it possible to select which blend modes will be used in the +encoding process. This could speed up encoding of APNG files. + + September 9th, 2015, FFmpeg 2.8 We published release 2.8 as new major version. --- Summary of changes: src/index | 234 ++ 1 file changed, 234 insertions(+) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. c66bebc Do not add excessive margin for index
The branch, master has been updated via c66bebcd0dae15ff2dc5198f73174bebe53d682a (commit) via e9ed4fe8aa9d68a6eec5f11cc184263cd1ac9c3a (commit) from 2c8a29870f1a8d5f03aad1db84cb9790c140d32e (commit) - Log - commit c66bebcd0dae15ff2dc5198f73174bebe53d682a Author: Timothy Gu AuthorDate: Tue Sep 29 09:01:45 2015 -0700 Commit: Timothy Gu CommitDate: Tue Sep 29 16:03:54 2015 -0700 Do not add excessive margin for index diff --git a/src/less/style.less b/src/less/style.less index adb6e17..6588ec7 100644 --- a/src/less/style.less +++ b/src/less/style.less @@ -392,18 +392,6 @@ code { // Download & Index page #download, #index { - -h4 { -margin-top: 180px; -} -h4.first { -margin-top: 20px; -small { -color: inherit; -font-size: 1em; -} -} - .btn-download-wrapper { text-align: center; margin: 160px auto; @@ -431,6 +419,18 @@ code { } #download { + +h4 { +margin-top: 180px; +} +h4.first { +margin-top: 20px; +small { +color: inherit; +font-size: 1em; +} +} + .btn-download-wrapper { margin: 40px auto; } commit e9ed4fe8aa9d68a6eec5f11cc184263cd1ac9c3a Author: Timothy Gu AuthorDate: Tue Sep 29 08:59:35 2015 -0700 Commit: Timothy Gu CommitDate: Tue Sep 29 16:03:54 2015 -0700 Looser Bower dependency versioning diff --git a/bower.json b/bower.json index 1fbe902..7d1e9ad 100644 --- a/bower.json +++ b/bower.json @@ -5,9 +5,9 @@ "homepage": "http://ffmpeg.org/";, "main": "htdocs/style.css", "dependencies": { -"bootstrap": "3.3.1", -"font-awesome": "4.2.0", -"jquery": "2.1.1", -"less": "2.1.0" +"bootstrap": "^3.3.1", +"font-awesome": "^4.2.0", +"jquery": "^2.1.1", +"less": "^2.1.0" } } --- Summary of changes: bower.json | 8 ---- src/less/style.less | 24 2 files changed, 16 insertions(+), 16 deletions(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. cd58f91 index: add thank you note about our new hosters.
The branch, master has been updated via cd58f91cf71ada9cee59573d1b020b44143e9e7f (commit) from c66bebcd0dae15ff2dc5198f73174bebe53d682a (commit) - Log - commit cd58f91cf71ada9cee59573d1b020b44143e9e7f Author: compn AuthorDate: Tue Oct 13 09:03:56 2015 -0400 Commit: compn CommitDate: Tue Oct 13 09:09:15 2015 -0400 index: add thank you note about our new hosters. Typo Fixes by: Ganesh Ajjanagadde Signed-off-by: Reynaldo H. Verdejo Pinochet Signed-off-by: Michael Niedermayer diff --git a/src/index b/src/index index 77946a4..ec187ae 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,39 @@ News + Telepoint & MediaHub are now supporting our project + +A big thank you note goes to our newest supporters: MediaHub and Telepoint. +Both companies have donated a dedicated server with free of charge internet +connectivity. Here is a little bit about them in their own words: + + + + + +http://www.telepoint.bg/en";>Telepoint is the biggest +carrier-neutral data center in Bulgaria. Located in the heart of Sofia +on a cross-road of many Bulgarian and International networks, the +facility is a fully featured Tier 3 data center that provides flexible +customer-oriented colocation solutions (ranging from a server to a +private collocation hall) and a high level of security. + + + + + +MediaHub Ltd. is a Bulgarian IPTV platform and services provider which +uses FFmpeg heavily since it started operating a year ago. "Donating +to help keep FFmpeg online is our way of giving back to the community" +. + + + + + +Thanks Telepoint and MediaHub for their support! + + September 29th, 2015, GSoC 2015 results --- Summary of changes: src/index | 33 + 1 file changed, 33 insertions(+) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. bc26efa index: add missing / to url
The branch, master has been updated via bc26efa6d84b54d88551c0bd547f333f138c79a4 (commit) from cd58f91cf71ada9cee59573d1b020b44143e9e7f (commit) - Log - commit bc26efa6d84b54d88551c0bd547f333f138c79a4 Author: compn AuthorDate: Tue Oct 13 09:12:07 2015 -0400 Commit: compn CommitDate: Tue Oct 13 09:12:07 2015 -0400 index: add missing / to url diff --git a/src/index b/src/index index ec187ae..4fdc6ff 100644 --- a/src/index +++ b/src/index @@ -47,7 +47,7 @@ -http://www.telepoint.bg/en";>Telepoint is the biggest +http://www.telepoint.bg/en/";>Telepoint is the biggest carrier-neutral data center in Bulgaria. Located in the heart of Sofia on a cross-road of many Bulgarian and International networks, the facility is a fully featured Tier 3 data center that provides flexible --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 7ff5c5c index: typo fix
The branch, master has been updated via 7ff5c5c6644f800ea4ba24c8ee3842253f0fe57b (commit) from bc26efa6d84b54d88551c0bd547f333f138c79a4 (commit) - Log - commit 7ff5c5c6644f800ea4ba24c8ee3842253f0fe57b Author: Reynaldo H. Verdejo Pinochet AuthorDate: Tue Oct 13 11:53:07 2015 -0700 Commit: Reynaldo H. Verdejo Pinochet CommitDate: Tue Oct 13 11:53:07 2015 -0700 index: typo fix Signed-off-by: Reynaldo H. Verdejo Pinochet diff --git a/src/index b/src/index index 4fdc6ff..d1d4a58 100644 --- a/src/index +++ b/src/index @@ -214,7 +214,7 @@ and moved the existing scaler code into it. These changes now allow easily adding removing, splitting or merging processing steps. The implementation was benchmarked and several alternatives were -tried to avoid speedloss. +tried to avoid speed loss. --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 578a884 web/download: Add FFmpeg 2.8.1
The branch, master has been updated via 578a884d133f82568eb114cc23b7177ef9fe7208 (commit) from 7ff5c5c6644f800ea4ba24c8ee3842253f0fe57b (commit) - Log - commit 578a884d133f82568eb114cc23b7177ef9fe7208 Author: Michael Niedermayer AuthorDate: Wed Oct 14 04:32:40 2015 +0200 Commit: Michael Niedermayer CommitDate: Wed Oct 14 04:34:37 2015 +0200 web/download: Add FFmpeg 2.8.1 diff --git a/src/download b/src/download index b5ec1c3..5691fbd 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.8.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.8.1.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.8.tar.bz2 + ffmpeg-2.8.1.tar.bz2 More releases @@ -266,10 +266,10 @@ -FFmpeg 2.8 "Feynman" +FFmpeg 2.8.1 "Feynman" -2.8 was released on 2015-09-09. It is the latest stable FFmpeg release +2.8.1 was released on 2015-10-14. It is the latest stable FFmpeg release from the 2.8 release branch, which was cut from master on 2015-09-05. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-08-28, libav 11 as of 2015-08-28. @@ -289,19 +289,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.1";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes --- Summary of changes: src/download | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. c609ad9 web/src/about: add note on portability
The branch, master has been updated via c609ad9680fe547ded2b6a6a1ed46df3c8f1357a (commit) from 578a884d133f82568eb114cc23b7177ef9fe7208 (commit) - Log - commit c609ad9680fe547ded2b6a6a1ed46df3c8f1357a Author: Ganesh Ajjanagadde AuthorDate: Tue Oct 13 12:10:35 2015 -0400 Commit: Lou Logan CommitDate: Tue Oct 13 20:04:27 2015 -0800 web/src/about: add note on portability diff --git a/src/about b/src/about index 8d8f606..67342a1 100644 --- a/src/about +++ b/src/about @@ -4,7 +4,11 @@ transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were - designed by some standards committee, the community or a corporation. + designed by some standards committee, the community or a corporation. It is + also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure + http://fate.ffmpeg.org";>FATE across Linux, Mac OS X, + Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build + environments, machine architectures, and configurations. It contains libavcodec, libavutil, libavformat, libavfilter, libavdevice, --- Summary of changes: src/about | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 95ca99b .gitignore: some font temporaries
The branch, master has been updated via 95ca99b3daa66dbb4e3484878d4df43fe8eed965 (commit) from c609ad9680fe547ded2b6a6a1ed46df3c8f1357a (commit) - Log - commit 95ca99b3daa66dbb4e3484878d4df43fe8eed965 Author: Ganesh Ajjanagadde AuthorDate: Sun Oct 11 16:27:49 2015 -0400 Commit: Timothy Gu CommitDate: Tue Oct 13 22:00:15 2015 -0700 .gitignore: some font temporaries Signed-off-by: Timothy Gu diff --git a/.gitignore b/.gitignore index 0b26f68..b215828 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /htdocs/main.rss /htdocs/components /htdocs/style.less +/htdocs/fonts/*.woff2 --- Summary of changes: .gitignore | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. af10c06 web/legal: remove Legal threats section
The branch, master has been updated via af10c065181fcda91a5d82d000320898801928cd (commit) from 95ca99b3daa66dbb4e3484878d4df43fe8eed965 (commit) - Log - commit af10c065181fcda91a5d82d000320898801928cd Author: Lou Logan AuthorDate: Thu Oct 22 15:16:50 2015 -0800 Commit: Lou Logan CommitDate: Thu Oct 22 15:39:39 2015 -0800 web/legal: remove Legal threats section Signed-off-by: Lou Logan Signed-off-by: Kieran Kunhya Signed-off-by: wm4 Signed-off-by: Ronald S. Bultje diff --git a/src/legal b/src/legal index c235d31..1037a69 100644 --- a/src/legal +++ b/src/legal @@ -157,14 +157,3 @@ you start trying to make money from patented technologies, the owners of the patents will come after their licensing fees. Notably, MPEG LA is vigilant and diligent about collecting for MPEG-related technologies. - -Legal threats - -May 30, 2011 - -Today FFmpeg has received the first legal threat in its existence. Its -from a previous root admin of FFmpeg, who now is root admin of the -Libav fork of FFmpeg. He claims copyright on the zigzag part of our -logo. It has to be noted that he said 4 years ago http://article.gmane.org/gmane.comp.video.ffmpeg.devel/44742";>Credit to whoever came up with the zigzag idea -Update May 31/June 1: we have replaced the logo with a better looking one drawn by -Hervé Flores. --- Summary of changes: src/legal | 11 --- 1 file changed, 11 deletions(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 896c08f web/download: Add FFmpeg 2.8.2
The branch, master has been updated via 896c08f19407ca6baedcff464d5cfce44f443c03 (commit) from af10c065181fcda91a5d82d000320898801928cd (commit) - Log - commit 896c08f19407ca6baedcff464d5cfce44f443c03 Author: Michael Niedermayer AuthorDate: Thu Nov 12 02:48:41 2015 +0100 Commit: Michael Niedermayer CommitDate: Thu Nov 12 02:49:05 2015 +0100 web/download: Add FFmpeg 2.8.2 Signed-off-by: Michael Niedermayer diff --git a/src/download b/src/download index 5691fbd..0a9a05f 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.8.1.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.8.2.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.8.1.tar.bz2 + ffmpeg-2.8.2.tar.bz2 More releases @@ -266,10 +266,10 @@ -FFmpeg 2.8.1 "Feynman" +FFmpeg 2.8.2 "Feynman" -2.8.1 was released on 2015-10-14. It is the latest stable FFmpeg release +2.8.2 was released on 2015-11-12. It is the latest stable FFmpeg release from the 2.8 release branch, which was cut from master on 2015-09-05. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-08-28, libav 11 as of 2015-08-28. @@ -289,19 +289,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.1";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.2";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes --- Summary of changes: src/download | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. bd63768 web/download: Add FFmpeg 2.7.3
The branch, master has been updated via bd637685439375f70cec7344560476d8734cee78 (commit) from 896c08f19407ca6baedcff464d5cfce44f443c03 (commit) - Log - commit bd637685439375f70cec7344560476d8734cee78 Author: Michael Niedermayer AuthorDate: Thu Nov 19 03:49:27 2015 +0100 Commit: Michael Niedermayer CommitDate: Thu Nov 19 03:49:27 2015 +0100 web/download: Add FFmpeg 2.7.3 diff --git a/src/download b/src/download index 0a9a05f..824cee8 100644 --- a/src/download +++ b/src/download @@ -308,11 +308,11 @@ libpostproc53. 3.100 -FFmpeg 2.7.2 "Nash" +FFmpeg 2.7.3 "Nash" -2.7.2 was released on 2015-07-20. It is the latest stable FFmpeg release -from the 2.7.2 release branch, which was cut from master on 2015-06-09. +2.7.3 was released on 2015-11-19. It is the latest stable FFmpeg release +from the 2.7.3 release branch, which was cut from master on 2015-06-09. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-06-10, libav 11 as of 2015-06-11. @@ -331,19 +331,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.2";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.3";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes --- Summary of changes: src/download | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 5d5effd web/download: Add FFmpeg 2.6.5
The branch, master has been updated via 5d5effd504c107d44e141ade59ad4e61e5b58562 (commit) from bd637685439375f70cec7344560476d8734cee78 (commit) - Log - commit 5d5effd504c107d44e141ade59ad4e61e5b58562 Author: Michael Niedermayer AuthorDate: Mon Nov 23 03:40:46 2015 +0100 Commit: Michael Niedermayer CommitDate: Mon Nov 23 03:40:46 2015 +0100 web/download: Add FFmpeg 2.6.5 Signed-off-by: Michael Niedermayer diff --git a/src/download b/src/download index 824cee8..6965d19 100644 --- a/src/download +++ b/src/download @@ -350,10 +350,10 @@ libpostproc53. 3.100 -FFmpeg 2.6.4 "Grothendieck" +FFmpeg 2.6.5 "Grothendieck" -2.6.4 was released on 2015-07-25. It is the latest stable FFmpeg release +2.6.5 was released on 2015-11-23. It is the latest stable FFmpeg release from the 2.6 release branch, which was cut from master on 2015-03-06. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-03-06, libav 11 as of 2015-03-06. @@ -373,19 +373,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.4";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.5";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.6";>Release Notes --- Summary of changes: src/download | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 4f98b18 web/security: Add CVEs for 2.8.2, 2.7.3 and 2.6.5
The branch, master has been updated via 4f98b18729b3bf12fec7ea5f55e9d19b16453d2d (commit) from 5d5effd504c107d44e141ade59ad4e61e5b58562 (commit) - Log - commit 4f98b18729b3bf12fec7ea5f55e9d19b16453d2d Author: Michael Niedermayer AuthorDate: Mon Nov 23 22:38:09 2015 +0100 Commit: Michael Niedermayer CommitDate: Mon Nov 23 22:44:32 2015 +0100 web/security: Add CVEs for 2.8.2, 2.7.3 and 2.6.5 diff --git a/src/security b/src/security index ddb04f7..6fa888c 100644 --- a/src/security +++ b/src/security @@ -2,6 +2,18 @@ FFmpeg 2.8 +2.8.2 + +Fixes following vulnerabilities: + + +CVE-2015-6761, b46efcb2933c6adc11486104195dcd5054485246 / dabea74d0e82ea80cd344f630497cafcb3ef872c +CVE-2015-8216, fdb884263974b19584a4f37508d71bc60189f512 / d24888ef19ba38b787b11d1ee091a3d94920c76a +CVE-2015-8217, ff30907205fc4a9666a7ee93ca456e3a5bcacbc0 / 93f30f825c08477fe8f76be00539e96014cc83c8 +CVE-2015-8218, a7bbb7fb884a02a7b380ef7afa787fca756b9d82 / d4a731b84a08f0f3839eaaaf82e97d8d9c67da46 +CVE-2015-8219, 56419053bcaef67acb41dbc1934aa8eaec9acbe6 / 43492ff3ab68a343c1264801baa1d5a02de10167 + + 2.8 Fixes following vulnerabilities: @@ -21,6 +33,16 @@ CVE-2015-6826, 3197c0aa87a3b7190e17d49e6fbc7b554e4b3f0a FFmpeg 2.7 +2.7.3 + +Fixes following vulnerabilities: + + +CVE-2015-8217, d332aa6ec678e5e9630710a049eee36a91127f8c / 93f30f825c08477fe8f76be00539e96014cc83c8 +CVE-2015-8216, edf06a056253267bb1f2fba3bbc17f4b323f92b1 / d24888ef19ba38b787b11d1ee091a3d94920c76a +CVE-2015-8219, 169a02da1e39915f20f21d67de5747e1752d8da2 / 43492ff3ab68a343c1264801baa1d5a02de10167 + + 2.7.2 Fixes following vulnerabilities: @@ -48,6 +70,16 @@ CVE-2015-3395, f7e1367f58263593e6cee3c282f7277d7ee9d553 FFmpeg 2.6 +2.6.5 + +Fixes following vulnerabilities: + + +CVE-2015-8216, 4fec2df719b31d37f4af0b230d0876c4eee7e5df / d24888ef19ba38b787b11d1ee091a3d94920c76a +CVE-2015-8217, 6a82ec8844a1b3f6d7b6cfe0fd1293340d19c786 / 93f30f825c08477fe8f76be00539e96014cc83c8 +CVE-2015-8219, 9f6e755272e7d07e83a5b8224be7eb3318204916 / 43492ff3ab68a343c1264801baa1d5a02de10167 + + 2.6.4 Fixes following vulnerabilities: --- Summary of changes: src/security | 32 1 file changed, 32 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. a73f6b0 web/download: point to the official Debian/Ubuntu packages
The branch, master has been updated via a73f6b0d2e708be3a7a0b0361ea5b5c8af545e42 (commit) from 4f98b18729b3bf12fec7ea5f55e9d19b16453d2d (commit) - Log - commit a73f6b0d2e708be3a7a0b0361ea5b5c8af545e42 Author: Andreas Cadhalpun AuthorDate: Fri Nov 6 20:15:09 2015 +0100 Commit: Andreas Cadhalpun CommitDate: Wed Nov 25 00:25:47 2015 +0100 web/download: point to the official Debian/Ubuntu packages Reviewed-by: Michael Niedermayer Signed-off-by: Andreas Cadhalpun diff --git a/src/download b/src/download index 6965d19..e870ea4 100644 --- a/src/download +++ b/src/download @@ -53,13 +53,22 @@ Linux Packages + https://tracker.debian.org/pkg/ffmpeg";> +Debian â Official packages for Stable-Backports, Testing, Unstable +(amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x) + http://www.deb-multimedia.org/";> -Debian packages for Oldstable, Stable, Testing, Unstable +Debian â deb-multimedia packages for Oldstable, Stable, Testing, Unstable (amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, sparc) + https://launchpad.net/ubuntu/+source/ffmpeg"; class="list-group-item"> +Ubuntu â Official packages for Vivid, Wily, Xenial +(amd64, arm64, armhf, i386, powerpc, ppc64el) + https://launchpad.net/~mc3man/+archive/ubuntu/trusty-media"; class="list-group-item"> Ubuntu â Ubuntu Multimedia for Trusty PPA. Provides static binaries from most recent release branch. +(amd64, i386) http://rpmfusion.org/";> Fedora and Red Hat Enterprise Linux packages (i386, x86_64) --- Summary of changes: src/download | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 1db7d93 web/download: add 2.8.3
The branch, master has been updated via 1db7d9375051213a5c3b7f7d3ad9e13a6cd67db9 (commit) from a73f6b0d2e708be3a7a0b0361ea5b5c8af545e42 (commit) - Log - commit 1db7d9375051213a5c3b7f7d3ad9e13a6cd67db9 Author: Michael Niedermayer AuthorDate: Fri Nov 27 15:50:58 2015 +0100 Commit: Michael Niedermayer CommitDate: Fri Nov 27 15:51:46 2015 +0100 web/download: add 2.8.3 diff --git a/src/download b/src/download index e870ea4..85bbd51 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.8.2.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.8.3.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.8.2.tar.bz2 + ffmpeg-2.8.3.tar.bz2 More releases @@ -275,10 +275,10 @@ -FFmpeg 2.8.2 "Feynman" +FFmpeg 2.8.3 "Feynman" -2.8.2 was released on 2015-11-12. It is the latest stable FFmpeg release +2.8.3 was released on 2015-11-27. It is the latest stable FFmpeg release from the 2.8 release branch, which was cut from master on 2015-09-05. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-08-28, libav 11 as of 2015-08-28. @@ -298,19 +298,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.2";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.3";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes --- Summary of changes: src/download | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 8bae71d web/security: Add CVEs for 2.8.3, 2.7.3, 2.6.5
The branch, master has been updated via 8bae71d86e245304e7e1e2543361632bc7a7bdad (commit) from 1db7d9375051213a5c3b7f7d3ad9e13a6cd67db9 (commit) - Log - commit 8bae71d86e245304e7e1e2543361632bc7a7bdad Author: Michael Niedermayer AuthorDate: Fri Nov 27 15:58:08 2015 +0100 Commit: Michael Niedermayer CommitDate: Fri Nov 27 15:59:10 2015 +0100 web/security: Add CVEs for 2.8.3, 2.7.3, 2.6.5 Signed-off-by: Michael Niedermayer diff --git a/src/security b/src/security index 6fa888c..f8a0fbc 100644 --- a/src/security +++ b/src/security @@ -2,6 +2,16 @@ FFmpeg 2.8 +2.8.3 + +Fixes following vulnerabilities: + + +CVE-2015-8363, dbfec68d323cd1497a291c6dcf12be7828c74636 / 44a7f17d0b20e6f8d836b2957e3e357b639f19a2 +CVE-2015-8364, f64ffbbdc0cc35fa3a478a8e6ca8b2342240bd02 / df91aa034b82b77a3c4e01791f4a2b2ff6c82066 +CVE-2015-8365, 093e58228e77f28fd8adf50435b30dcb9b246164 / 4a9af07a49295e014b059c1ab624c40345af5892 + + 2.8.2 Fixes following vulnerabilities: @@ -41,6 +51,9 @@ Fixes following vulnerabilities: CVE-2015-8217, d332aa6ec678e5e9630710a049eee36a91127f8c / 93f30f825c08477fe8f76be00539e96014cc83c8 CVE-2015-8216, edf06a056253267bb1f2fba3bbc17f4b323f92b1 / d24888ef19ba38b787b11d1ee091a3d94920c76a CVE-2015-8219, 169a02da1e39915f20f21d67de5747e1752d8da2 / 43492ff3ab68a343c1264801baa1d5a02de10167 +CVE-2015-8363, 335351e7153caa4e59f960bb2b9a18f877b3 / 44a7f17d0b20e6f8d836b2957e3e357b639f19a2 +CVE-2015-8364, b996cde19323756e647f3aa9c67c4ff2efe3a32d / df91aa034b82b77a3c4e01791f4a2b2ff6c82066 +CVE-2015-8365, 10398038239b6357a6ebe6f7ba0836280a2673fc / 4a9af07a49295e014b059c1ab624c40345af5892 2.7.2 @@ -78,6 +91,9 @@ Fixes following vulnerabilities: CVE-2015-8216, 4fec2df719b31d37f4af0b230d0876c4eee7e5df / d24888ef19ba38b787b11d1ee091a3d94920c76a CVE-2015-8217, 6a82ec8844a1b3f6d7b6cfe0fd1293340d19c786 / 93f30f825c08477fe8f76be00539e96014cc83c8 CVE-2015-8219, 9f6e755272e7d07e83a5b8224be7eb3318204916 / 43492ff3ab68a343c1264801baa1d5a02de10167 +CVE-2015-8363, 53869b687c4ec13aa534a147fb3a3648fe72b191 / 44a7f17d0b20e6f8d836b2957e3e357b639f19a2 +CVE-2015-8364, c00d40095bf2039b028fbe2a65e05ee33a12ca81 / df91aa034b82b77a3c4e01791f4a2b2ff6c82066 +CVE-2015-8365, cf2d26eacf6226e525e6643dcc3919702359485a / 4a9af07a49295e014b059c1ab624c40345af5892 2.6.4 --- Summary of changes: src/security | 16 1 file changed, 16 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. d391a05 web/download: remove architecture lists
The branch, master has been updated via d391a05edc5b8b8ea9f3bfb53ecfb8f32c7466f3 (commit) from 8bae71d86e245304e7e1e2543361632bc7a7bdad (commit) - Log - commit d391a05edc5b8b8ea9f3bfb53ecfb8f32c7466f3 Author: Andreas Cadhalpun AuthorDate: Wed Nov 25 00:34:26 2015 +0100 Commit: Andreas Cadhalpun CommitDate: Wed Dec 2 18:30:48 2015 +0100 web/download: remove architecture lists They are not very helpful and feel out-of-place. Suggested-by: Timothy Gu Reviewed-by: Timothy Gu Signed-off-by: Andreas Cadhalpun diff --git a/src/download b/src/download index 85bbd51..fde54ca 100644 --- a/src/download +++ b/src/download @@ -55,23 +55,19 @@ https://tracker.debian.org/pkg/ffmpeg";> Debian â Official packages for Stable-Backports, Testing, Unstable -(amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x) http://www.deb-multimedia.org/";> Debian â deb-multimedia packages for Oldstable, Stable, Testing, Unstable -(amd64, armel, armhf, i386, ia64, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, sparc) https://launchpad.net/ubuntu/+source/ffmpeg"; class="list-group-item"> Ubuntu â Official packages for Vivid, Wily, Xenial -(amd64, arm64, armhf, i386, powerpc, ppc64el) https://launchpad.net/~mc3man/+archive/ubuntu/trusty-media"; class="list-group-item"> Ubuntu â Ubuntu Multimedia for Trusty PPA. Provides static binaries from most recent release branch. -(amd64, i386) http://rpmfusion.org/";> -Fedora and Red Hat Enterprise Linux packages (i386, x86_64) +Fedora and Red Hat Enterprise Linux packages --- Summary of changes: src/download | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. c0d429d Use http:// instead of git:// for the source.
The branch, master has been updated via c0d429d0f5ecf6de139b9f34c996ad27afd7af8c (commit) from d391a05edc5b8b8ea9f3bfb53ecfb8f32c7466f3 (commit) - Log - commit c0d429d0f5ecf6de139b9f34c996ad27afd7af8c Author: Konstantin Pavlov AuthorDate: Sat Dec 5 19:20:12 2015 +0300 Commit: Kieran Kunhya CommitDate: Sat Dec 5 16:35:58 2015 + Use http:// instead of git:// for the source. We're trying to minimize git:// usage on VideoLAN servers. diff --git a/src/download b/src/download index fde54ca..a1b9158 100644 --- a/src/download +++ b/src/download @@ -131,7 +131,7 @@ by using the command: -git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg +git clone http://source.ffmpeg.org/git/ffmpeg.git ffmpeg --- Summary of changes: src/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. bf44793 Use http:// instead of git:// here too.
The branch, master has been updated via bf447932e94eb5ebf49b95216db52d673246c1cd (commit) from c0d429d0f5ecf6de139b9f34c996ad27afd7af8c (commit) - Log - commit bf447932e94eb5ebf49b95216db52d673246c1cd Author: Konstantin Pavlov AuthorDate: Sat Dec 5 19:40:23 2015 +0300 Commit: Kieran Kunhya CommitDate: Sat Dec 5 16:42:44 2015 + Use http:// instead of git:// here too. diff --git a/src/download b/src/download index a1b9158..700d1fd 100644 --- a/src/download +++ b/src/download @@ -194,7 +194,7 @@ -git://source.ffmpeg.org/ffmpeg.git +http://source.ffmpeg.org/git/ffmpeg.git";>http://source.ffmpeg.org/git/ffmpeg.git http://git.videolan.org/?p=ffmpeg.git";>Browse --- Summary of changes: src/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 55ac551 news: add a news entry for the AAC encoder experimental flag removal
The branch, master has been updated via 55ac551218ac5ee2b080c14d69124fc8bcc3f825 (commit) from bf447932e94eb5ebf49b95216db52d673246c1cd (commit) - Log - commit 55ac551218ac5ee2b080c14d69124fc8bcc3f825 Author: Rostislav Pehlivanov AuthorDate: Sat Dec 5 20:49:57 2015 + Commit: Lou Logan CommitDate: Sat Dec 5 15:19:35 2015 -0900 news: add a news entry for the AAC encoder experimental flag removal Signed-off-by: Rostislav Pehlivanov Signed-off-by: Ganesh Ajjanagadde Signed-off-by: Lou Logan diff --git a/src/index b/src/index index d1d4a58..7bf3f7a 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,32 @@ News + The native FFmpeg AAC encoder is now stable! + +After seven years the native FFmpeg AAC encoder has had its experimental flag +removed and declared as ready for general use. The encoder is transparent +at 128kbps for most samples tested with artifacts only appearing in extreme +cases. Subjective quality tests put the encoder to be of equal or greater +quality than most of the other encoders available to the public. + + +Licensing has always been an issue with encoding AAC audio as most of the +encoders have had a license making FFmpeg unredistributable if compiled with +support for them. The fact that there now exists a fully open and truly +free AAC encoder integrated directly within the project means a lot to those +who wish to use accepted and widespread standards. + + +The majority of the work done to bring the encoder up to quality was started +during this year's GSoC by developer Claudio Freire and Rostislav Pehlivanov. +Both continued to work on the encoder with the latter joining as a developer +and mainainer, working on other parts of the project as well. Also, thanks +to http://d.hatena.ne.jp/kamedo2/";>Kamedo2 who does comparisons +and tests, the original authors and all past and current contributors to the +encoder. Users are suggested and encouraged to use the encoder and provide +feedback or breakage reports through our https://trac.ffmpeg.org/";>bug tracker. + + Telepoint & MediaHub are now supporting our project A big thank you note goes to our newest supporters: MediaHub and Telepoint. --- Summary of changes: src/index | 26 ++ 1 file changed, 26 insertions(+) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 56ee6c0 Merge branch 'master' of git.ffmpeg.org:ffmpeg-web
The branch, master has been updated via 56ee6c0daa2470bd080ee8a41c4cf7bbbda2667e (commit) via 4054a6e37242ae15f13db4c8ee154a93da0fd2cf (commit) via cafc3d4ee4374c1c6b25509e093bf773fab1d08e (commit) from 55ac551218ac5ee2b080c14d69124fc8bcc3f825 (commit) - Log - commit 56ee6c0daa2470bd080ee8a41c4cf7bbbda2667e Merge: 4054a6e 55ac551 Author: Kieran Kunhya AuthorDate: Sun Dec 6 21:26:47 2015 + Commit: Kieran Kunhya CommitDate: Sun Dec 6 21:26:47 2015 + Merge branch 'master' of git.ffmpeg.org:ffmpeg-web commit 4054a6e37242ae15f13db4c8ee154a93da0fd2cf Author: Kieran Kunhya AuthorDate: Sun Dec 6 21:26:27 2015 + Commit: Kieran Kunhya CommitDate: Sun Dec 6 21:26:27 2015 + Revert "Use http:// instead of git:// for the source." This reverts commit c0d429d0f5ecf6de139b9f34c996ad27afd7af8c. diff --git a/src/download b/src/download index a1b9158..fde54ca 100644 --- a/src/download +++ b/src/download @@ -131,7 +131,7 @@ by using the command: -git clone http://source.ffmpeg.org/git/ffmpeg.git ffmpeg +git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg commit cafc3d4ee4374c1c6b25509e093bf773fab1d08e Author: Kieran Kunhya AuthorDate: Sun Dec 6 21:26:09 2015 + Commit: Kieran Kunhya CommitDate: Sun Dec 6 21:26:09 2015 + Revert "Use http:// instead of git:// here too." This reverts commit bf447932e94eb5ebf49b95216db52d673246c1cd. diff --git a/src/download b/src/download index 700d1fd..a1b9158 100644 --- a/src/download +++ b/src/download @@ -194,7 +194,7 @@ -http://source.ffmpeg.org/git/ffmpeg.git";>http://source.ffmpeg.org/git/ffmpeg.git +git://source.ffmpeg.org/ffmpeg.git http://git.videolan.org/?p=ffmpeg.git";>Browse --- Summary of changes: src/download | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 056d2d9 web/download: add FFmpeg 2.5.9
The branch, master has been updated via 056d2d9a719c92322de412466197951d59d9d990 (commit) from 56ee6c0daa2470bd080ee8a41c4cf7bbbda2667e (commit) - Log - commit 056d2d9a719c92322de412466197951d59d9d990 Author: Michael Niedermayer AuthorDate: Mon Dec 7 02:55:42 2015 +0100 Commit: Michael Niedermayer CommitDate: Mon Dec 7 02:55:42 2015 +0100 web/download: add FFmpeg 2.5.9 Signed-off-by: Michael Niedermayer diff --git a/src/download b/src/download index fde54ca..a851294 100644 --- a/src/download +++ b/src/download @@ -397,10 +397,10 @@ libpostproc53. 3.100 -FFmpeg 2.5.8 "Bohr" +FFmpeg 2.5.9 "Bohr" -2.5.8 was released on 2015-07-31. It is the latest stable FFmpeg release +2.5.9 was released on 2015-12-07. It is the latest stable FFmpeg release from the 2.5 release branch, which was cut from master on 2014-12-15. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2014-12-03, libav 11 as of 2014-12-03. @@ -420,19 +420,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.8";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.9";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.5";>Release Notes --- Summary of changes: src/download | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 1b7fef3 web/security: add CVEs for 2.5.9 and 2.4.12
The branch, master has been updated via 1b7fef3b4f1832963db372273e91ec40667d7d25 (commit) via 978f48859ca2c7a91633e67ae3a5aa55de68f5ea (commit) from 056d2d9a719c92322de412466197951d59d9d990 (commit) - Log - commit 1b7fef3b4f1832963db372273e91ec40667d7d25 Author: Michael Niedermayer AuthorDate: Thu Dec 10 02:08:42 2015 +0100 Commit: Michael Niedermayer CommitDate: Thu Dec 10 02:08:42 2015 +0100 web/security: add CVEs for 2.5.9 and 2.4.12 add CVE-2015-6761, CVE-2015-8216, CVE-2015-8219, CVE-2015-8363, CVE-2015-8364, CVE-2015-8365 diff --git a/src/security b/src/security index f8a0fbc..154205d 100644 --- a/src/security +++ b/src/security @@ -130,6 +130,19 @@ CVE-2015-3417, e8714f6f93d1a32f4e4655209960afcf4c185214 FFmpeg 2.5 +2.5.9 + +Fixes following vulnerabilities: + + +CVE-2015-6761, 608f928c74d821f74747e22819b4c6dfc90acbb5 / dabea74d0e82ea80cd344f630497cafcb3ef872c +CVE-2015-8216, f2b161319d29d19d9113b4d06bc28be8745fa35c / d24888ef19ba38b787b11d1ee091a3d94920c76a +CVE-2015-8219, 9e755b9b99c3c28a27a34d276a182b84f8563eff / 43492ff3ab68a343c1264801baa1d5a02de10167 +CVE-2015-8363, be4b41b6cb7cd3c962cfcde6305d5e7537645bf2 / 44a7f17d0b20e6f8d836b2957e3e357b639f19a2 +CVE-2015-8364, ffaea7a790778ec4f23a22bbb445b77471dbddb1 / df91aa034b82b77a3c4e01791f4a2b2ff6c82066 +CVE-2015-8365, 2b0cda395f2330fc0dbebadb612b758bf46ccf47 / 4a9af07a49295e014b059c1ab624c40345af5892 + + 2.5.8 Fixes following vulnerabilities: @@ -196,6 +209,19 @@ CVE-2014-9319, ea38e5a6b75706477898eb1e6582d667dbb9946c FFmpeg 2.4 +2.4.12 + +Fixes following vulnerabilities: + + +CVE-2015-6761, ee5ba259d12d60c4e67fb0d92b46bd4b16d79eac / dabea74d0e82ea80cd344f630497cafcb3ef872c +CVE-2015-8216, 2f89546333b53e626d710cde357f0d13ea450474 / d24888ef19ba38b787b11d1ee091a3d94920c76a +CVE-2015-8219, d73a8ae70f15d4c9145c20db709f4b06b0a8e835 / 43492ff3ab68a343c1264801baa1d5a02de10167 +CVE-2015-8363, ac302efb9151addfc9d45495d56592ba6fd384b2 / 44a7f17d0b20e6f8d836b2957e3e357b639f19a2 +CVE-2015-8364, f68ff799eb00ec7f38e983c7fbe60c7ff948e401 / df91aa034b82b77a3c4e01791f4a2b2ff6c82066 +CVE-2015-8365, 3449b47dc548fdc91ee46c6e3de04ad8b6b3d045 / 4a9af07a49295e014b059c1ab624c40345af5892 + + 2.4.11 Fixes following vulnerabilities: commit 978f48859ca2c7a91633e67ae3a5aa55de68f5ea Author: Michael Niedermayer AuthorDate: Thu Dec 10 02:08:10 2015 +0100 Commit: Michael Niedermayer CommitDate: Thu Dec 10 02:08:10 2015 +0100 web/download: add FFmpeg 2.4.12 diff --git a/src/download b/src/download index a851294..2ec242b 100644 --- a/src/download +++ b/src/download @@ -439,10 +439,10 @@ libpostproc53. 3.100 -FFmpeg 2.4.11 "Fresnel" +FFmpeg 2.4.12 "Fresnel" -2.4.11 was released on 2015-08-25. It is the latest stable FFmpeg release +2.4.12 was released on 2015-12-10. It is the latest stable FFmpeg release from the 2.4 release branch, which was cut from master on 2014-09-14. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2014-09-14, libav 11.4 as of 2015-08-25. @@ -462,15 +462,15 @@ libpostproc53. 0.100 - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.4.11";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.4.12";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.4";>Release Notes --- Summary of changes: src/download | 14 +++--- src/security | 26 ++ 2 files changed, 33 insertions(+), 7 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. b95c658 web: Do not use to establish anchors
"Love" 0.8.15 was released on 2013-10-06. It is a stable FFmpeg release @@ -378,8 +367,7 @@ libpostproc52. 0.100 - - FFmpeg 0.7.17 "Peace" +FFmpeg 0.7.17 "Peace" 0.7.17 was released on 2015-03-12. @@ -401,8 +389,7 @@ libpostproc52. 0.100 - - FFmpeg 0.6.7 "Works with HTML5" +FFmpeg 0.6.7 "Works with HTML5" 0.6.7 appeared on 2013-09-23. It is the latest point release from the @@ -424,9 +411,10 @@ libpostproc 52. 0.100 - + FFmpeg 0.5.15 "half-way to world domination A.K.A. the belligerent blue bike - shed" + shed" + 0.5.15 appeared on 2014-11-29. It is the latest point release from the --- Summary of changes: src/archive | 121 src/download| 18 +++-- src/index | 54 - src/olddownload | 44 - 4 files changed, 109 insertions(+), 128 deletions(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 33764ae web: Add dates to the last two news entries
The branch, master has been updated via 33764ae5c94f5d5a019acaeaee25b1498a4e0eb3 (commit) from b95c6584576e004e56d94fcdf6679d051a043bf4 (commit) - Log - commit 33764ae5c94f5d5a019acaeaee25b1498a4e0eb3 Author: Timothy Gu AuthorDate: Sun Dec 13 20:55:21 2015 -0800 Commit: Timothy Gu CommitDate: Sun Dec 13 20:55:21 2015 -0800 web: Add dates to the last two news entries diff --git a/src/index b/src/index index 1874cb6..554ad0e 100644 --- a/src/index +++ b/src/index @@ -37,7 +37,7 @@ News - The native FFmpeg AAC encoder is now stable! + December 5th, 2015, The native FFmpeg AAC encoder is now stable! After seven years the native FFmpeg AAC encoder has had its experimental flag removed and declared as ready for general use. The encoder is transparent @@ -63,7 +63,7 @@ feedback or breakage reports through our https://trac.ffmpeg.org/";>bug tracker. - Telepoint & MediaHub are now supporting our project + October 13th, 2015, Telepoint & MediaHub are now supporting our project A big thank you note goes to our newest supporters: MediaHub and Telepoint. Both companies have donated a dedicated server with free of charge internet --- Summary of changes: src/index | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 040628a web/download: add FFmpeg 2.8.4
The branch, master has been updated via 040628ac21606ed472e0beb2f07bc08d3f954d7d (commit) from 33764ae5c94f5d5a019acaeaee25b1498a4e0eb3 (commit) - Log - commit 040628ac21606ed472e0beb2f07bc08d3f954d7d Author: Michael Niedermayer AuthorDate: Sun Dec 20 03:19:59 2015 +0100 Commit: Michael Niedermayer CommitDate: Sun Dec 20 03:19:59 2015 +0100 web/download: add FFmpeg 2.8.4 diff --git a/src/download b/src/download index 43cf05f..cbc4bdf 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.8.3.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.8.4.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.8.3.tar.bz2 + ffmpeg-2.8.4.tar.bz2 More releases @@ -270,10 +270,10 @@ - FFmpeg 2.8.3 "Feynman" + FFmpeg 2.8.4 "Feynman" -2.8.3 was released on 2015-11-27. It is the latest stable FFmpeg release +2.8.4 was released on 2015-12-20. It is the latest stable FFmpeg release from the 2.8 release branch, which was cut from master on 2015-09-05. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-08-28, libav 11 as of 2015-08-28. @@ -293,19 +293,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.3";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.4";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes --- Summary of changes: src/download | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 66ed1f3 web/download: Add FFmpeg 2.7.4
The branch, master has been updated via 66ed1f3747c1b7615317f6d9d2be2a898b4e3bca (commit) from 040628ac21606ed472e0beb2f07bc08d3f954d7d (commit) - Log - commit 66ed1f3747c1b7615317f6d9d2be2a898b4e3bca Author: Michael Niedermayer AuthorDate: Mon Dec 21 19:04:53 2015 +0100 Commit: Michael Niedermayer CommitDate: Mon Dec 21 19:04:53 2015 +0100 web/download: Add FFmpeg 2.7.4 Signed-off-by: Michael Niedermayer diff --git a/src/download b/src/download index cbc4bdf..9517c6d 100644 --- a/src/download +++ b/src/download @@ -311,11 +311,11 @@ libpostproc53. 3.100 - FFmpeg 2.7.3 "Nash" + FFmpeg 2.7.4 "Nash" -2.7.3 was released on 2015-11-19. It is the latest stable FFmpeg release -from the 2.7.3 release branch, which was cut from master on 2015-06-09. +2.7.4 was released on 2015-12-21. It is the latest stable FFmpeg release +from the 2.7.4 release branch, which was cut from master on 2015-06-09. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-06-10, libav 11 as of 2015-06-11. @@ -334,19 +334,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.3";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.4";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes --- Summary of changes: src/download | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 2b09ed1 web/download: add 2.6.6
The branch, master has been updated via 2b09ed196c684a128018f9c0118c87ebf32c129b (commit) from 66ed1f3747c1b7615317f6d9d2be2a898b4e3bca (commit) - Log - commit 2b09ed196c684a128018f9c0118c87ebf32c129b Author: Michael Niedermayer AuthorDate: Tue Dec 22 18:22:20 2015 +0100 Commit: Michael Niedermayer CommitDate: Tue Dec 22 18:22:20 2015 +0100 web/download: add 2.6.6 diff --git a/src/download b/src/download index 9517c6d..0b9486e 100644 --- a/src/download +++ b/src/download @@ -352,10 +352,10 @@ libpostproc53. 3.100 - FFmpeg 2.6.5 "Grothendieck" + FFmpeg 2.6.6 "Grothendieck" -2.6.5 was released on 2015-11-23. It is the latest stable FFmpeg release +2.6.6 was released on 2015-12-22. It is the latest stable FFmpeg release from the 2.6 release branch, which was cut from master on 2015-03-06. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-03-06, libav 11 as of 2015-03-06. @@ -375,19 +375,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.5";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.6";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.6";>Release Notes --- Summary of changes: src/download | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. ed0d018 web/security: add CVEs for the latest releases
The branch, master has been updated via ed0d018a060c2afacdbf37e2384ffd4a4fd61c29 (commit) from 2b09ed196c684a128018f9c0118c87ebf32c129b (commit) - Log - commit ed0d018a060c2afacdbf37e2384ffd4a4fd61c29 Author: Michael Niedermayer AuthorDate: Thu Dec 24 12:09:56 2015 +0100 Commit: Michael Niedermayer CommitDate: Thu Dec 24 12:09:56 2015 +0100 web/security: add CVEs for the latest releases Signed-off-by: Michael Niedermayer diff --git a/src/security b/src/security index 154205d..af42cab 100644 --- a/src/security +++ b/src/security @@ -2,6 +2,15 @@ FFmpeg 2.8 +2.8.4 + +Fixes following vulnerabilities: + + +CVE-2015-8662, 9d5bdca3d8af5dd86d27f300ff19180a295fa934 / 75422280fbcdfbe9dc56bde5525b4d8b280f1bc5 +CVE-2015-8663, 7372b42b184d8c90f82dbb21695bbfe2e7e4ac03 / abee0a1c60612e8638640a8a3738fffb65e16dbf + + 2.8.3 Fixes following vulnerabilities: @@ -10,6 +19,7 @@ Fixes following vulnerabilities: CVE-2015-8363, dbfec68d323cd1497a291c6dcf12be7828c74636 / 44a7f17d0b20e6f8d836b2957e3e357b639f19a2 CVE-2015-8364, f64ffbbdc0cc35fa3a478a8e6ca8b2342240bd02 / df91aa034b82b77a3c4e01791f4a2b2ff6c82066 CVE-2015-8365, 093e58228e77f28fd8adf50435b30dcb9b246164 / 4a9af07a49295e014b059c1ab624c40345af5892 +CVE-2015-8661, 6b91701de322031d7ceacecbda3d71948fb4da04 / 4ea4d2f438c9a7eba37980c9a87be4b34943e4d5 2.8.2 @@ -43,6 +53,17 @@ CVE-2015-6826, 3197c0aa87a3b7190e17d49e6fbc7b554e4b3f0a FFmpeg 2.7 +2.7.4 + +Fixes following vulnerabilities: + + +CVE-2015-6761, 8405b6329463af8ac2e5dac4fcdda03888388f78 / dabea74d0e82ea80cd344f630497cafcb3ef872c +CVE-2015-8661, 54e94522b899111dd4b9f93386d582d26859ead5 / 4ea4d2f438c9a7eba37980c9a87be4b34943e4d5 +CVE-2015-8662, 8ef86669ca25b71a61e4b69d428b69b5d71ec7b7 / 75422280fbcdfbe9dc56bde5525b4d8b280f1bc5 +CVE-2015-8663, fad0748b9221fbc7ca806e2ca9aac84927cd7234 / abee0a1c60612e8638640a8a3738fffb65e16dbf + + 2.7.3 Fixes following vulnerabilities: @@ -83,6 +104,17 @@ CVE-2015-3395, f7e1367f58263593e6cee3c282f7277d7ee9d553 FFmpeg 2.6 +2.6.6 + +Fixes following vulnerabilities: + + +CVE-2015-6761, 292842a0ed80afc0ad80626397100fed5e9595f4 / dabea74d0e82ea80cd344f630497cafcb3ef872 +CVE-2015-8661, dd4c2fe74afe76868a279fd96fbc56eeffa5 / 4ea4d2f438c9a7eba37980c9a87be4b34943e4d5 +CVE-2015-8662, 20a96b9d8c71b77761b82edd1971dc54354c175f / 75422280fbcdfbe9dc56bde5525b4d8b280f1bc5 +CVE-2015-8663, a0a2bfbfd876571344df2b7fe5fd781791ec02a3 / abee0a1c60612e8638640a8a3738fffb65e16dbf + + 2.6.5 Fixes following vulnerabilities: @@ -141,6 +173,9 @@ CVE-2015-8219, 9e755b9b99c3c28a27a34d276a182b84f8563eff / 43492ff3ab68a343c12648 CVE-2015-8363, be4b41b6cb7cd3c962cfcde6305d5e7537645bf2 / 44a7f17d0b20e6f8d836b2957e3e357b639f19a2 CVE-2015-8364, ffaea7a790778ec4f23a22bbb445b77471dbddb1 / df91aa034b82b77a3c4e01791f4a2b2ff6c82066 CVE-2015-8365, 2b0cda395f2330fc0dbebadb612b758bf46ccf47 / 4a9af07a49295e014b059c1ab624c40345af5892 +CVE-2015-8661, 9ba0cb7c270385ec844d8ab0dcbc359d35174413 / 4ea4d2f438c9a7eba37980c9a87be4b34943e4d5 +CVE-2015-8662, 551e18aa920585ffaa1562a9b6438abcf57193e7 / 75422280fbcdfbe9dc56bde5525b4d8b280f1bc5 +CVE-2015-8663, e5d162ae9bd59711cd945c7b4b3dc85d896208bb / abee0a1c60612e8638640a8a3738fffb65e16dbf 2.5.8 @@ -220,6 +255,9 @@ CVE-2015-8219, d73a8ae70f15d4c9145c20db709f4b06b0a8e835 / 43492ff3ab68a343c12648 CVE-2015-8363, ac302efb9151addfc9d45495d56592ba6fd384b2 / 44a7f17d0b20e6f8d836b2957e3e357b639f19a2 CVE-2015-8364, f68ff799eb00ec7f38e983c7fbe60c7ff948e401 / df91aa034b82b77a3c4e01791f4a2b2ff6c82066 CVE-2015-8365, 3449b47dc548fdc91ee46c6e3de04ad8b6b3d045 / 4a9af07a49295e014b059c1ab624c40345af5892 +CVE-2015-8661, e9ec9be1467972be0a8baa3167cf1f70f1a8c097 / 4ea4d2f438c9a7eba37980c9a87be4b34943e4d5 +CVE-2015-8662, c44ee37cbd05af48523f7099803924dee757709c / 75422280fbcdfbe9dc56bde5525b4d8b280f1bc5 +CVE-2015-8663, 95bdbfe85159b0b6f576ae23e2b758a169ea409a / abee0a1c60612e8638640a8a3738fffb65e16dbf 2.4.11 --- Summary of changes: src/security | 38 ++ 1 file changed, 38 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 2fb4c5f web: use https for forgotten trac wiki links
The branch, master has been updated via 2fb4c5fc288793ddc1bd5342bd0a117c14024f4a (commit) via 45b7038a29794a9592668772e5caf41dc7d3fe17 (commit) from 110925bb71a0c83cfcd247958eb0d7c22a7d63f7 (commit) - Log - commit 2fb4c5fc288793ddc1bd5342bd0a117c14024f4a Author: Michael Niedermayer AuthorDate: Tue May 17 14:35:08 2016 +0200 Commit: Michael Niedermayer CommitDate: Wed May 18 00:18:19 2016 +0200 web: use https for forgotten trac wiki links Reviewed-by: Lou Logan diff --git a/src/documentation b/src/documentation index 872206e..e6df56f 100644 --- a/src/documentation +++ b/src/documentation @@ -109,7 +109,7 @@ Community Contributed Documentation -http://trac.ffmpeg.org/wiki";>Official FFmpeg Wiki +https://trac.ffmpeg.org/wiki";>Official FFmpeg Wiki http://wiki.multimedia.cx/";>MultimediaWiki http://dranger.com/ffmpeg/";>An FFmpeg and SDL Tutorial by Stephen Dranger, explains how to write a video player based on FFmpeg diff --git a/src/template_head2 b/src/template_head2 index 2e61b30..a0b11ab 100644 --- a/src/template_head2 +++ b/src/template_head2 @@ -27,7 +27,7 @@ IRC Forums Bug Reports - http://trac.ffmpeg.org";>Wiki + https://trac.ffmpeg.org";>Wiki Developers commit 45b7038a29794a9592668772e5caf41dc7d3fe17 Author: Michael Niedermayer AuthorDate: Tue May 17 14:27:45 2016 +0200 Commit: Michael Niedermayer CommitDate: Wed May 18 00:17:57 2016 +0200 web/contact: Use https for external links where it works Reviewed-by: Lou Logan diff --git a/src/contact b/src/contact index e84367b..9ee7392 100644 --- a/src/contact +++ b/src/contact @@ -8,7 +8,7 @@ Please follow the netiquette when posting on FFmpeg mailing lists, especially - avoid http://en.wikipedia.org/wiki/Top-posting";>top-posting and + avoid https://en.wikipedia.org/wiki/Top-posting";>top-posting and thread hijacking (that is, replying to a thread and changing the subject line to something completely unrelated that was not being discussed within the original thread). @@ -98,7 +98,7 @@ IRC Channels - FFmpeg has two official channels on the http://freenode.net/";>freenode + FFmpeg has two official channels on the https://freenode.net/";>freenode IRC network. Both channels are open and unmoderated. Developers with commit rights have operator status, contributors with patches in FFmpeg have voice in the channels. @@ -154,7 +154,7 @@ -http://ffmpeg.zeranoe.com/forum/";>FFmpeg on Windows +https://ffmpeg.zeranoe.com/forum/";>FFmpeg on Windows http://ffmpeg.gusari.org/index.php";>FFmpeg Support Forum --- Summary of changes: src/contact| 6 +++--- src/documentation | 2 +- src/template_head2 | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 664f097 web/download: use https in browse links
The branch, master has been updated via 664f097d5b48a262c145c140be362e2e958b5df0 (commit) from 2fb4c5fc288793ddc1bd5342bd0a117c14024f4a (commit) - Log - commit 664f097d5b48a262c145c140be362e2e958b5df0 Author: Michael Niedermayer AuthorDate: Tue May 3 12:18:45 2016 +0200 Commit: Michael Niedermayer CommitDate: Wed May 18 17:41:15 2016 +0200 web/download: use https in browse links git.videolan.org is down currently, thus use git.ffmpeg.org Signed-off-by: Michael Niedermayer diff --git a/src/download b/src/download index d59ba57..864ccf5 100644 --- a/src/download +++ b/src/download @@ -196,7 +196,7 @@ https://git.ffmpeg.org/ffmpeg.git";>https://git.ffmpeg.org/ffmpeg.git - http://git.videolan.org/?p=ffmpeg.git";>Browse + https://git.ffmpeg.org/gitweb/ffmpeg.git";>Browse Main FFmpeg Git repository @@ -303,8 +303,8 @@ libpostproc54. 0.100 PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n3.0.2";>Changelog - http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/3.0";>Release Notes + https://git.ffmpeg.org/gitweb/ffmpeg.git/shortlog/n3.0.2";>Changelog + https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/refs/heads/release/3.0:/RELEASE_NOTES";>Release Notes @@ -344,8 +344,8 @@ libpostproc53. 3.100 PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.7";>Changelog - http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes + https://git.ffmpeg.org/gitweb/ffmpeg.git/shortlog/n2.8.7";>Changelog + https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/refs/heads/release/2.8:/RELEASE_NOTES";>Release Notes @@ -385,8 +385,8 @@ libpostproc53. 3.100 PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.7";>Changelog - http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes + https://git.ffmpeg.org/gitweb/ffmpeg.git/shortlog/n2.7.7";>Changelog + https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/refs/heads/release/2.7:/RELEASE_NOTES";>Release Notes @@ -426,8 +426,8 @@ libpostproc53. 3.100 PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.9";>Changelog - http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.6";>Release Notes + https://git.ffmpeg.org/gitweb/ffmpeg.git/shortlog/n2.6.9";>Changelog + https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/refs/heads/release/2.6:/RELEASE_NOTES";>Release Notes @@ -467,8 +467,8 @@ libpostproc53. 3.100 PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.11";>Changelog - http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.5";>Release Notes + https://git.ffmpeg.org/gitweb/ffmpeg.git/shortlog/n2.5.11";>Changelog + https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/refs/heads/release/2.5:/RELEASE_NOTES";>Release Notes --- Summary of changes: src/download | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. ea7e07d web/contact: correct the condition for op status on IRC
The branch, master has been updated via ea7e07d02d89fddf673022b837d9813277023ae1 (commit) from 381914ae78b32d84cf6c78324c17ba238db31afc (commit) - Log - commit ea7e07d02d89fddf673022b837d9813277023ae1 Author: Michael Niedermayer AuthorDate: Sun May 22 01:13:24 2016 +0200 Commit: Michael Niedermayer CommitDate: Sun May 22 11:32:53 2016 +0200 web/contact: correct the condition for op status on IRC we gave op status to commiters in the CVS and SVN days since git an entry in MAINTAINERs was generally required to be offered op status and push rights where not required. Reviewed-by: Lou Logan Signed-off-by: Michael Niedermayer diff --git a/src/contact b/src/contact index 9ee7392..200cb67 100644 --- a/src/contact +++ b/src/contact @@ -99,8 +99,8 @@ FFmpeg has two official channels on the https://freenode.net/";>freenode - IRC network. Both channels are open and unmoderated. Developers with commit - rights have operator status, contributors with patches in FFmpeg + IRC network. Both channels are open and unmoderated. Maintainers + have operator status, contributors with patches in FFmpeg have voice in the channels. https://webchat.freenode.net/";>freenode webchat is a web client for these channels. --- Summary of changes: src/contact | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. c8aaaea web/contact: Point to the Code of conduct
The branch, master has been updated via c8aaaea25c6b81e31e5d2e200cb244dd946ef657 (commit) from ea7e07d02d89fddf673022b837d9813277023ae1 (commit) - Log - commit c8aaaea25c6b81e31e5d2e200cb244dd946ef657 Author: Michael Niedermayer AuthorDate: Mon Jun 6 23:48:58 2016 +0200 Commit: Michael Niedermayer CommitDate: Tue Jun 7 00:43:24 2016 +0200 web/contact: Point to the Code of conduct Suggested-by: Felt, Patrick Reviewed-by: Lou Logan Signed-off-by: Michael Niedermayer diff --git a/src/contact b/src/contact index 200cb67..e076222 100644 --- a/src/contact +++ b/src/contact @@ -11,7 +11,7 @@ avoid https://en.wikipedia.org/wiki/Top-posting";>top-posting and thread hijacking (that is, replying to a thread and changing the subject line to something completely unrelated that was not being discussed within the original - thread). + thread) and please read the Code of conduct. Configuring your mail client to break lines after 70 or so characters is a plus. @@ -104,6 +104,7 @@ have voice in the channels. https://webchat.freenode.net/";>freenode webchat is a web client for these channels. + Please read and follow the Code of conduct. --- Summary of changes: src/contact | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. eef48c3 Remove Benjamin Larsson from consulting
The branch, master has been updated via eef48c3e272aeecf79c9e1c39f9995830dd816a2 (commit) from c8aaaea25c6b81e31e5d2e200cb244dd946ef657 (commit) - Log - commit eef48c3e272aeecf79c9e1c39f9995830dd816a2 Author: Benjamin Larsson AuthorDate: Thu Jun 9 21:29:33 2016 +0200 Commit: Michael Niedermayer CommitDate: Thu Jun 9 21:29:33 2016 +0200 Remove Benjamin Larsson from consulting diff --git a/src/consulting b/src/consulting index dfa0576..d281ebf 100644 --- a/src/consulting +++ b/src/consulting @@ -59,17 +59,6 @@ E.g.: - Benjamin Larsson - -Benjamin Larsson is located in Stockholm, Sweden and is available for contracting -work. He has worked on FFmpeg since 2004. Main area of expertise is audio codecs. -You can contact him by email at -mailto:benjamin%20at%20southpole%20dot%20se";>benjamin at southpole dot se. - - - - - Carl Eugen Hoyos Carl Eugen is located in Austria and is available for contracting work. --- Summary of changes: src/consulting | 11 --- 1 file changed, 11 deletions(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. edd2802 web:Move up entry from last line to correct formating
The branch, master has been updated via edd28025ea3d2717aae90e6f5130ffda31e816ce (commit) from eef48c3e272aeecf79c9e1c39f9995830dd816a2 (commit) - Log - commit edd28025ea3d2717aae90e6f5130ffda31e816ce Author: Michael Niedermayer AuthorDate: Thu Jun 9 21:48:13 2016 +0200 Commit: Michael Niedermayer CommitDate: Thu Jun 9 21:48:13 2016 +0200 web:Move up entry from last line to correct formating Found-by: Logan Signed-off-by: Michael Niedermayer diff --git a/src/consulting b/src/consulting index d281ebf..b18ad22 100644 --- a/src/consulting +++ b/src/consulting @@ -70,6 +70,18 @@ E.g.: + + + Lou Logan + +Lou is located in Alaska and is available for contract work, general +consulting, and troubleshooting involving the ffmpeg cli tool. +He has been a maintainer since 2011, and focuses on helping users, +documentation, and project communication. You can contact him by email at +mailto:lou%20at%20lrcd%20dot%20com";>lou at lrcd dot com. + + + @@ -132,16 +144,4 @@ E.g.: - - - Lou Logan - -Lou is located in Alaska and is available for contract work, general -consulting, and troubleshooting involving the ffmpeg cli tool. -He has been a maintainer since 2011, and focuses on helping users, -documentation, and project communication. You can contact him by email at -mailto:lou%20at%20lrcd%20dot%20com";>lou at lrcd dot com. - - - --- Summary of changes: src/consulting | 24 1 file changed, 12 insertions(+), 12 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 19bd2b4 web/security: Add CVE-2016-3062
The branch, master has been updated via 19bd2b4349f1c5338570856854f89f03aa02a389 (commit) from edd28025ea3d2717aae90e6f5130ffda31e816ce (commit) - Log - commit 19bd2b4349f1c5338570856854f89f03aa02a389 Author: Michael Niedermayer AuthorDate: Tue Jun 14 00:09:47 2016 +0200 Commit: Michael Niedermayer CommitDate: Tue Jun 14 00:12:01 2016 +0200 web/security: Add CVE-2016-3062 diff --git a/src/security b/src/security index 5e09fc0..ae89f9b 100644 --- a/src/security +++ b/src/security @@ -1253,6 +1253,7 @@ CVE-2012-2804, 4a80ebe491609e04110a1dd540a0ca79d3be3d04 CVE-2012-5359, msvr12-017 CVE-2012-5360, msvr12-017 CVE-2012-5361, msvr12-017 +CVE-2016-3062, 689e59b7ffed34eba6159dcc78e87133862e3746 FFmpeg 0.10 --- Summary of changes: src/security | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] open vacancy
Hello! We are looking for employees working remotely. My name is Davis, am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5000. If you are interested in this offer, please visit Our Site Best regards!___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 00e59f5 web/download: Add 2.7
The branch, master has been updated via 00e59f598e2d2336af18e1942c55ebf6d01e06ba (commit) from 858444283db8e21b1f247f286261b1b3c491dbde (commit) - Log - commit 00e59f598e2d2336af18e1942c55ebf6d01e06ba Author: Michael Niedermayer AuthorDate: Wed Jun 10 01:47:49 2015 +0200 Commit: Michael Niedermayer CommitDate: Wed Jun 10 01:47:49 2015 +0200 web/download: Add 2.7 Signed-off-by: Michael Niedermayer diff --git a/src/download b/src/download index 7b0b5e6..6c504cf 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.6.3.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.7.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.6.3.tar.bz2 + ffmpeg-2.7.tar.bz2 More releases @@ -265,6 +265,44 @@ + +FFmpeg 2.7 "Nash" + + +2.7 was released on 2015-06-10. It is the latest stable FFmpeg release +from the 2.7 release branch, which was cut from master on 2015-06-09. +Amongst lots of other changes, it includes all changes from +ffmpeg-mt, libav master of 2015-06-10, libav 11 as of 2015-06-11. + + It includes the following library versions: + + +libavutil 54. 27.100 +libavcodec 56. 41.100 +libavformat56. 36.100 +libavdevice56. 4.100 +libavfilter 5. 16.101 +libavresample 2. 1. 0 +libswscale 3. 1.101 +libswresample 1. 2.100 +libpostproc53. 3.100 + + + + Download bzip2 tarball + PGP signature + + + Download gzip tarball + PGP signature + + + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes + + + + FFmpeg 2.6.3 "Grothendieck" --- Summary of changes: src/download | 42 -- 1 file changed, 40 insertions(+), 2 deletions(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. b3f774b web/documentation: add link to 2.7 doxygen
The branch, master has been updated via b3f774b4617dcb9e1386c182c3fde8bac9952a6b (commit) from 00e59f598e2d2336af18e1942c55ebf6d01e06ba (commit) - Log - commit b3f774b4617dcb9e1386c182c3fde8bac9952a6b Author: Michael Niedermayer AuthorDate: Wed Jun 10 01:57:23 2015 +0200 Commit: Michael Niedermayer CommitDate: Wed Jun 10 01:57:23 2015 +0200 web/documentation: add link to 2.7 doxygen diff --git a/src/documentation b/src/documentation index 88eb4f1..052af87 100644 --- a/src/documentation +++ b/src/documentation @@ -81,6 +81,7 @@ Doxygen documentation for current trunk (regenerated nightly); documentation for the + 2.7, 2.6, 2.5, 2.4, --- Summary of changes: src/documentation | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 7c05a8a web: add 2.0.7
The branch, master has been updated via 7c05a8a611c9992d3ae193d5af9e807eb0321224 (commit) from b3f774b4617dcb9e1386c182c3fde8bac9952a6b (commit) - Log - commit 7c05a8a611c9992d3ae193d5af9e807eb0321224 Author: Michael Niedermayer AuthorDate: Wed Jun 10 03:47:59 2015 +0200 Commit: Michael Niedermayer CommitDate: Wed Jun 10 03:47:59 2015 +0200 web: add 2.0.7 Signed-off-by: Michael Niedermayer diff --git a/src/olddownload b/src/olddownload index 9e5d5dd..a976659 100644 --- a/src/olddownload +++ b/src/olddownload @@ -79,10 +79,10 @@ libpostproc52. 3.100 - FFmpeg 2.0.6 "Nameless" + FFmpeg 2.0.7 "Nameless" - 2.0.6 was released on 2014-11-14. It is the latest stable FFmpeg release + 2.0.7 was released on 2015-06-10. It is the latest stable FFmpeg release from the 2.0 release branch, which was cut from master on 2013-07-10. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2013-07-09, libav 9 as of 2013-07-09. @@ -102,15 +102,15 @@ libpostproc52. 3.100 -Download bzip2 tarball -PGP signature +Download bzip2 tarball +PGP signature -Download gzip tarball -PGP signature +Download gzip tarball +PGP signature -http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.0.6";>Changelog +http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.0.7";>Changelog diff --git a/src/security b/src/security index bea1822..a012518 100644 --- a/src/security +++ b/src/security @@ -355,6 +355,21 @@ CVE-2013-7024, fe448cd28d674c3eff3072552eae366d0b659ce9 FFmpeg 2.0 +2.0.7 + +Fixes following vulnerabilities: + + +CVE-2014-9316, 1e18ed781f8befcb72f94a1bd4d5392c2e7e6267 / 0eecf40935b22644e6cd74c586057237ecfd6844 +CVE-2014-9317, a0f1da9baab02f7452248d3e5bb9f7924523d8c0 / 79ceaf827be0b070675d4cd0a55c3386542defd8 +CVE-2014-9318, eeff4bdbb86800f791d2033fdc4cb1eb0478dd44 / 1d3a3b9f8907625b361420d48fe05716859620ff +CVE-2014-9603, 87af5b3877a398885389c5aa0345978ce8e6c72e / 3030fb7e0d41836f8add6399e9a7c7b740b48bfd +CVE-2014-9604, 9a15f326828c7fba847be401248a087ccb6ad0c1 / 3881606240953b9275a247a1c98a567f3c44890f +CVE-2015-1872, fe618beccf10566e834d6a81e6e432263331553b / fabbfaa095660982cc0bc63242c459561fa37037 +CVE-2015-3395, 936554f1d7388cd9e46add774345b138e55acf47 / f7e1367f58263593e6cee3c282f7277d7ee9d553 +CVE-2015-3417, ae19e19678a15df311f4c1fd8d2054134e6a6ef3 / e8714f6f93d1a32f4e4655209960afcf4c185214 + + 2.0.6 Fixes following vulnerabilities: --- Summary of changes: src/olddownload | 14 +++--- src/security| 15 +++ 2 files changed, 22 insertions(+), 7 deletions(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. b67a849 web/security: list CVE betweeen 2.6 -> 2.7
The branch, master has been updated via b67a849c9ee2c9953d993c7f71ea6f1492c306c3 (commit) from 7c05a8a611c9992d3ae193d5af9e807eb0321224 (commit) - Log - commit b67a849c9ee2c9953d993c7f71ea6f1492c306c3 Author: Michael Niedermayer AuthorDate: Wed Jun 10 04:00:51 2015 +0200 Commit: Michael Niedermayer CommitDate: Wed Jun 10 04:00:51 2015 +0200 web/security: list CVE betweeen 2.6 -> 2.7 diff --git a/src/security b/src/security index a012518..67f2ec5 100644 --- a/src/security +++ b/src/security @@ -1,5 +1,16 @@ Please report vulnerabilities to mailto:ffmpeg-secur...@ffmpeg.org";>ffmpeg-secur...@ffmpeg.org +FFmpeg 2.7 + +2.7 + +Fixes following vulnerabilities: + + +CVE-2015-3395 f7e1367f58263593e6cee3c282f7277d7ee9d553 + + + FFmpeg 2.6 2.6.2 --- Summary of changes: src/security | 11 +++ 1 file changed, 11 insertions(+) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 9c08619 web/download: Add FFmpeg 2.2.16
The branch, master has been updated via 9c08619fa7f947345bd7389e803c4bede10b270a (commit) from b67a849c9ee2c9953d993c7f71ea6f1492c306c3 (commit) - Log - commit 9c08619fa7f947345bd7389e803c4bede10b270a Author: Michael Niedermayer AuthorDate: Thu Jun 18 21:20:53 2015 +0200 Commit: Michael Niedermayer CommitDate: Thu Jun 18 21:20:53 2015 +0200 web/download: Add FFmpeg 2.2.16 diff --git a/src/download b/src/download index 6c504cf..7884f63 100644 --- a/src/download +++ b/src/download @@ -417,13 +417,13 @@ libpostproc53. 0.100 -FFmpeg 2.2.15 "Muybridge" +FFmpeg 2.2.16 "Muybridge" -2.2.15 was released on 2015-04-17. It is the latest stable FFmpeg release +2.2.16 was released on 2015-06-18. It is the latest stable FFmpeg release from the 2.2 release branch, which was cut from master on 2014-03-01. Amongst lots of other changes, it includes all changes from -ffmpeg-mt, libav master of 2014-03-01, libav 10.6 as of 2015-03-14. +ffmpeg-mt, libav master of 2014-03-01, libav 10.7 as of 2015-06-18. It includes the following library versions: @@ -440,15 +440,15 @@ libpostproc52. 3.100 - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.2.15";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.2.16";>Changelog --- Summary of changes: src/download | 16 1 file changed, 8 insertions(+), 8 deletions(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 43d8378 web/download: Add FFmpeg 2.7.1
The branch, master has been updated via 43d837809ccca392489440267d71baf09ed56058 (commit) from 9c08619fa7f947345bd7389e803c4bede10b270a (commit) - Log - commit 43d837809ccca392489440267d71baf09ed56058 Author: Michael Niedermayer AuthorDate: Fri Jun 19 23:00:20 2015 +0200 Commit: Michael Niedermayer CommitDate: Fri Jun 19 23:00:20 2015 +0200 web/download: Add FFmpeg 2.7.1 diff --git a/src/download b/src/download index 7884f63..ca6fa2c 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.7.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.7.1.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.7.tar.bz2 + ffmpeg-2.7.1.tar.bz2 More releases @@ -266,11 +266,11 @@ -FFmpeg 2.7 "Nash" +FFmpeg 2.7.1 "Nash" -2.7 was released on 2015-06-10. It is the latest stable FFmpeg release -from the 2.7 release branch, which was cut from master on 2015-06-09. +2.7.1 was released on 2015-06-19. It is the latest stable FFmpeg release +from the 2.7.1 release branch, which was cut from master on 2015-06-09. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-06-10, libav 11 as of 2015-06-11. @@ -289,15 +289,15 @@ libpostproc53. 3.100 - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.1";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes --- Summary of changes: src/download | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 34547b5 news: ffmpeg needs a host
The branch, master has been updated via 34547b5290d21974e87b111d742401c81fc6216f (commit) from 43d837809ccca392489440267d71baf09ed56058 (commit) - Log - commit 34547b5290d21974e87b111d742401c81fc6216f Author: compn AuthorDate: Sat Jul 4 09:38:50 2015 -0400 Commit: compn CommitDate: Sat Jul 4 09:38:50 2015 -0400 news: ffmpeg needs a host diff --git a/src/index b/src/index index fbb3c05..06ae80e 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,19 @@ News + July 4th, 2015, FFmpeg needs a new host + +After graciously hosting our projects (http://www.ffmpeg.org";>FFmpeg, http://www.mplayerhq.hu";>MPlayer +and http://rtmpdump.mplayerhq.hu";>rtmpdump) for 4 years, Arpi (our hoster) has informed us that we have to secure a new host somewhere else. + + +If you want to host an open source project, please let us know, either on https://lists.sourceforge.net/lists/listinfo/ffmpeg-admins";>ffmpeg-admins +mailing list or irc.freenode.net #ffmpeg-devel. + + +We use about 4TB of storage and at least 4TB of bandwidth / month for various mailing lists, http://trac.ffmpeg.org";>trac, http://samples.ffmpeg.org";>samples repo, svn, etc. + + March 16, 2015, FFmpeg 2.6.1 We have made a new major release (2.6) --- Summary of changes: src/index | 13 + 1 file changed, 13 insertions(+) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 45b3ff7 news : increase importance of speedy host move
The branch, master has been updated via 45b3ff7ea726d78774e864241f610a315664a58a (commit) from 34547b5290d21974e87b111d742401c81fc6216f (commit) - Log - commit 45b3ff7ea726d78774e864241f610a315664a58a Author: compn AuthorDate: Sat Jul 4 09:47:22 2015 -0400 Commit: compn CommitDate: Sat Jul 4 09:47:22 2015 -0400 news : increase importance of speedy host move diff --git a/src/index b/src/index index 06ae80e..f3c3fd9 100644 --- a/src/index +++ b/src/index @@ -40,7 +40,7 @@ July 4th, 2015, FFmpeg needs a new host After graciously hosting our projects (http://www.ffmpeg.org";>FFmpeg, http://www.mplayerhq.hu";>MPlayer -and http://rtmpdump.mplayerhq.hu";>rtmpdump) for 4 years, Arpi (our hoster) has informed us that we have to secure a new host somewhere else. +and http://rtmpdump.mplayerhq.hu";>rtmpdump) for 4 years, Arpi (our hoster) has informed us that we have to secure a new host somewhere else immediately. If you want to host an open source project, please let us know, either on https://lists.sourceforge.net/lists/listinfo/ffmpeg-admins";>ffmpeg-admins --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 142da88 web/index: Remove trailing whitespace
The branch, master has been updated via 142da8895f37f0d2293ea4eac39c04b4dcfb348b (commit) from 45b3ff7ea726d78774e864241f610a315664a58a (commit) - Log - commit 142da8895f37f0d2293ea4eac39c04b4dcfb348b Author: Michael Niedermayer AuthorDate: Sun Jul 5 04:16:50 2015 +0200 Commit: Michael Niedermayer CommitDate: Sun Jul 5 04:16:50 2015 +0200 web/index: Remove trailing whitespace diff --git a/src/index b/src/index index f3c3fd9..fa77e47 100644 --- a/src/index +++ b/src/index @@ -47,7 +47,7 @@ mailing list or irc.freenode.net #ffmpeg-devel. -We use about 4TB of storage and at least 4TB of bandwidth / month for various mailing lists, http://trac.ffmpeg.org";>trac, http://samples.ffmpeg.org";>samples repo, svn, etc. +We use about 4TB of storage and at least 4TB of bandwidth / month for various mailing lists, http://trac.ffmpeg.org";>trac, http://samples.ffmpeg.org";>samples repo, svn, etc. March 16, 2015, FFmpeg 2.6.1 --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. a1c22e8 news: change ffmpeg-admins to ffmpeg-devel
The branch, master has been updated via a1c22e8860a3c468d078f265108cf7538b17f72a (commit) from 142da8895f37f0d2293ea4eac39c04b4dcfb348b (commit) - Log - commit a1c22e8860a3c468d078f265108cf7538b17f72a Author: compn AuthorDate: Tue Jul 7 11:33:39 2015 -0400 Commit: compn CommitDate: Tue Jul 7 11:33:39 2015 -0400 news: change ffmpeg-admins to ffmpeg-devel diff --git a/src/index b/src/index index fa77e47..8d7fe33 100644 --- a/src/index +++ b/src/index @@ -43,7 +43,7 @@ and http://rtmpdump.mplayerhq.hu";>rtmpdump) for 4 years, Arpi (our hoster) has informed us that we have to secure a new host somewhere else immediately. -If you want to host an open source project, please let us know, either on https://lists.sourceforge.net/lists/listinfo/ffmpeg-admins";>ffmpeg-admins +If you want to host an open source project, please let us know, either on http://ffmpeg.org/mailman/listinfo/ffmpeg-devel";>ffmpeg-devel mailing list or irc.freenode.net #ffmpeg-devel. --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 8daf3ad web/download: add FFmpeg 2.7.2
The branch, master has been updated via 8daf3add3f0e3e6174feefae372afce0ddfd1d78 (commit) from a1c22e8860a3c468d078f265108cf7538b17f72a (commit) - Log - commit 8daf3add3f0e3e6174feefae372afce0ddfd1d78 Author: Michael Niedermayer AuthorDate: Mon Jul 20 03:56:54 2015 +0200 Commit: Michael Niedermayer CommitDate: Mon Jul 20 03:56:54 2015 +0200 web/download: add FFmpeg 2.7.2 Also add a tar.xz diff --git a/src/download b/src/download index ca6fa2c..094727e 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.7.1.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.7.2.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.7.1.tar.bz2 + ffmpeg-2.7.2.tar.bz2 More releases @@ -266,11 +266,11 @@ -FFmpeg 2.7.1 "Nash" +FFmpeg 2.7.2 "Nash" -2.7.1 was released on 2015-06-19. It is the latest stable FFmpeg release -from the 2.7.1 release branch, which was cut from master on 2015-06-09. +2.7.2 was released on 2015-07-20. It is the latest stable FFmpeg release +from the 2.7.2 release branch, which was cut from master on 2015-06-09. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-06-10, libav 11 as of 2015-06-11. @@ -288,16 +288,20 @@ libswresample 1. 2.100 libpostproc53. 3.100 - - Download bzip2 tarball - PGP signature + + Download xz tarball + PGP signature - - Download gzip tarball - PGP signature + + Download bzip2 tarball + PGP signature - - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.1";>Changelog + + Download gzip tarball + PGP signature + + + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.2";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes --- Summary of changes: src/download | 30 +- 1 file changed, 17 insertions(+), 13 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 8bebf49 web/download: update for 2.6.4
The branch, master has been updated via 8bebf4927b4de775bfb78b89de5dca85f07e199c (commit) from 8daf3add3f0e3e6174feefae372afce0ddfd1d78 (commit) - Log - commit 8bebf4927b4de775bfb78b89de5dca85f07e199c Author: Michael Niedermayer AuthorDate: Sat Jul 25 01:06:31 2015 +0200 Commit: Michael Niedermayer CommitDate: Sat Jul 25 01:06:31 2015 +0200 web/download: update for 2.6.4 diff --git a/src/download b/src/download index 094727e..7fd2d3d 100644 --- a/src/download +++ b/src/download @@ -308,10 +308,10 @@ libpostproc53. 3.100 -FFmpeg 2.6.3 "Grothendieck" +FFmpeg 2.6.4 "Grothendieck" -2.6.3 was released on 2015-05-17. It is the latest stable FFmpeg release +2.6.4 was released on 2015-07-25. It is the latest stable FFmpeg release from the 2.6 release branch, which was cut from master on 2015-03-06. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-03-06, libav 11 as of 2015-03-06. @@ -330,16 +330,20 @@ libswresample 1. 1.100 libpostproc53. 3.100 - - Download bzip2 tarball - PGP signature + + Download xz tarball + PGP signature - - Download gzip tarball - PGP signature + + Download bzip2 tarball + PGP signature - - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.3";>Changelog + + Download gzip tarball + PGP signature + + + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.4";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.6";>Release Notes --- Summary of changes: src/download | 24 ++-- 1 file changed, 14 insertions(+), 10 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 9be302a web/bugreports: ask bug submitters to bisect regressions
The branch, master has been updated via 9be302acb0a26c12dd4c4302fd27b5aa35464dcb (commit) from 8bebf4927b4de775bfb78b89de5dca85f07e199c (commit) - Log - commit 9be302acb0a26c12dd4c4302fd27b5aa35464dcb Author: Michael Niedermayer AuthorDate: Wed Jul 29 03:51:37 2015 +0200 Commit: Michael Niedermayer CommitDate: Wed Jul 29 03:51:37 2015 +0200 web/bugreports: ask bug submitters to bisect regressions diff --git a/src/bugreports b/src/bugreports index 9438e0f..7d56dd8 100644 --- a/src/bugreports +++ b/src/bugreports @@ -98,6 +98,13 @@ info all-registers + + + If you encounter a regression, please use git bisect to find the + revission that caused the regression. Having this information available can + greatly speed up correcting the bug. + + --- Summary of changes: src/bugreports | 7 +++ 1 file changed, 7 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 0424215 web/download: add FFmpeg 2.5.8
The branch, master has been updated via 042421572f608a52bcc4d05de40ed60577b2394d (commit) from 9be302acb0a26c12dd4c4302fd27b5aa35464dcb (commit) - Log - commit 042421572f608a52bcc4d05de40ed60577b2394d Author: Michael Niedermayer AuthorDate: Fri Jul 31 02:50:05 2015 +0200 Commit: Michael Niedermayer CommitDate: Fri Jul 31 02:50:05 2015 +0200 web/download: add FFmpeg 2.5.8 diff --git a/src/download b/src/download index 7fd2d3d..244bcff 100644 --- a/src/download +++ b/src/download @@ -350,10 +350,10 @@ libpostproc53. 3.100 -FFmpeg 2.5.7 "Bohr" +FFmpeg 2.5.8 "Bohr" -2.5.7 was released on 2015-05-23. It is the latest stable FFmpeg release +2.5.8 was released on 2015-07-31. It is the latest stable FFmpeg release from the 2.5 release branch, which was cut from master on 2014-12-15. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2014-12-03, libav 11 as of 2014-12-03. @@ -372,16 +372,20 @@ libswresample 1. 1.100 libpostproc53. 3.100 - - Download bzip2 tarball - PGP signature + + Download xz tarball + PGP signature - - Download gzip tarball - PGP signature + + Download bzip2 tarball + PGP signature - - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.7";>Changelog + + Download gzip tarball + PGP signature + + + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.8";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.5";>Release Notes --- Summary of changes: src/download | 24 ++-- 1 file changed, 14 insertions(+), 10 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. bc8d1d7 Add statement regarding resignation of Michael Niedermayer as leader
The branch, master has been updated via bc8d1d7ccf59417b87954c3b02a95e6b61c2ad2c (commit) from 042421572f608a52bcc4d05de40ed60577b2394d (commit) - Log - commit bc8d1d7ccf59417b87954c3b02a95e6b61c2ad2c Author: Kieran Kunhya AuthorDate: Sat Aug 1 22:45:18 2015 +0100 Commit: Kieran Kunhya CommitDate: Sat Aug 1 22:45:18 2015 +0100 Add statement regarding resignation of Michael Niedermayer as leader diff --git a/src/index b/src/index index 8d7fe33..934582f 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,21 @@ News + August 1st, 2015, A message from the FFmpeg project + +Dear multimedia community, + + +The resignation of Michael Niedermayer as leader of FFmpeg yesterday has come as a shock. He has worked tirelessly on the FFmpeg project for many years and we must thank him for the work that he has done. We hope that in the future he will be able to continue to contribute to the project. In the coming weeks, the FFmpeg project will be managed by the active contributors, until we can find a more permanent solution. + + +The last four years have not been easy on our multimedia community, for both contributors and users. The current situation gives us an opportunity to find solutions to these issues, and to have reconciliation between the forks, which have split the community for so long. + +Unfortunately, much of the disagreement has taken place in inappropriate venues so far, which has made finding common ground and solutions difficult. We aim to discuss this in our communities online over the coming weeks, and in person at the https://www.videolan.org/videolan/events/vdd15/";>VideoLAN Developer Days in Paris in September: a neutral venue for the entire open source multimedia community. + +The FFmpeg project. + + July 4th, 2015, FFmpeg needs a new host After graciously hosting our projects (http://www.ffmpeg.org";>FFmpeg, http://www.mplayerhq.hu";>MPlayer --- Summary of changes: src/index | 15 +++ 1 file changed, 15 insertions(+) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. db8ebaf Fix html errors
The branch, master has been updated via db8ebafaa040cf80b136b9bc457dfad399eb1484 (commit) from bc8d1d7ccf59417b87954c3b02a95e6b61c2ad2c (commit) - Log - commit db8ebafaa040cf80b136b9bc457dfad399eb1484 Author: Kieran Kunhya AuthorDate: Sat Aug 1 22:55:39 2015 +0100 Commit: Kieran Kunhya CommitDate: Sat Aug 1 22:55:39 2015 +0100 Fix html errors diff --git a/src/index b/src/index index 934582f..74529a9 100644 --- a/src/index +++ b/src/index @@ -46,8 +46,10 @@ The last four years have not been easy on our multimedia community, for both contributors and users. The current situation gives us an opportunity to find solutions to these issues, and to have reconciliation between the forks, which have split the community for so long. + Unfortunately, much of the disagreement has taken place in inappropriate venues so far, which has made finding common ground and solutions difficult. We aim to discuss this in our communities online over the coming weeks, and in person at the https://www.videolan.org/videolan/events/vdd15/";>VideoLAN Developer Days in Paris in September: a neutral venue for the entire open source multimedia community. + The FFmpeg project. --- Summary of changes: src/index | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. c02a717 Fix stray
The branch, master has been updated via c02a717c36d620756230d72b8389186c638b2b33 (commit) from db8ebafaa040cf80b136b9bc457dfad399eb1484 (commit) - Log - commit c02a717c36d620756230d72b8389186c638b2b33 Author: Kieran Kunhya AuthorDate: Sat Aug 1 23:11:35 2015 +0100 Commit: Kieran Kunhya CommitDate: Sat Aug 1 23:11:35 2015 +0100 Fix stray diff --git a/src/index b/src/index index 74529a9..ec6a6f0 100644 --- a/src/index +++ b/src/index @@ -45,7 +45,7 @@ The resignation of Michael Niedermayer as leader of FFmpeg yesterday has come as a shock. He has worked tirelessly on the FFmpeg project for many years and we must thank him for the work that he has done. We hope that in the future he will be able to continue to contribute to the project. In the coming weeks, the FFmpeg project will be managed by the active contributors, until we can find a more permanent solution. -The last four years have not been easy on our multimedia community, for both contributors and users. The current situation gives us an opportunity to find solutions to these issues, and to have reconciliation between the forks, which have split the community for so long. +The last four years have not been easy on our multimedia community, for both contributors and users. The current situation gives us an opportunity to find solutions to these issues, and to have reconciliation between the forks, which have split the community for so long. Unfortunately, much of the disagreement has taken place in inappropriate venues so far, which has made finding common ground and solutions difficult. We aim to discuss this in our communities online over the coming weeks, and in person at the https://www.videolan.org/videolan/events/vdd15/";>VideoLAN Developer Days in Paris in September: a neutral venue for the entire open source multimedia community. --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. c25425b news: remove the recent added message
The branch, master has been updated via c25425bfc7ddef665ece21ed9374bc297bba02db (commit) from c02a717c36d620756230d72b8389186c638b2b33 (commit) - Log - commit c25425bfc7ddef665ece21ed9374bc297bba02db Author: Clément BÅsch AuthorDate: Sun Aug 2 00:26:13 2015 +0200 Commit: Clément BÅsch CommitDate: Sun Aug 2 00:26:22 2015 +0200 news: remove the recent added message This news is important but needs at least rewording and proper review. diff --git a/src/index b/src/index index ec6a6f0..8d7fe33 100644 --- a/src/index +++ b/src/index @@ -37,23 +37,6 @@ News - August 1st, 2015, A message from the FFmpeg project - -Dear multimedia community, - - -The resignation of Michael Niedermayer as leader of FFmpeg yesterday has come as a shock. He has worked tirelessly on the FFmpeg project for many years and we must thank him for the work that he has done. We hope that in the future he will be able to continue to contribute to the project. In the coming weeks, the FFmpeg project will be managed by the active contributors, until we can find a more permanent solution. - - -The last four years have not been easy on our multimedia community, for both contributors and users. The current situation gives us an opportunity to find solutions to these issues, and to have reconciliation between the forks, which have split the community for so long. - - -Unfortunately, much of the disagreement has taken place in inappropriate venues so far, which has made finding common ground and solutions difficult. We aim to discuss this in our communities online over the coming weeks, and in person at the https://www.videolan.org/videolan/events/vdd15/";>VideoLAN Developer Days in Paris in September: a neutral venue for the entire open source multimedia community. - - -The FFmpeg project. - - July 4th, 2015, FFmpeg needs a new host After graciously hosting our projects (http://www.ffmpeg.org";>FFmpeg, http://www.mplayerhq.hu";>MPlayer --- Summary of changes: src/index | 17 - 1 file changed, 17 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 636d63b news: submit reworded announcement
The branch, master has been updated via 636d63b6f3b0ae4b9d0ad5d0c0126b4eeda5db5c (commit) from c25425bfc7ddef665ece21ed9374bc297bba02db (commit) - Log - commit 636d63b6f3b0ae4b9d0ad5d0c0126b4eeda5db5c Author: Kieran Kunhya AuthorDate: Sun Aug 2 00:49:36 2015 +0200 Commit: Clément BÅsch CommitDate: Sun Aug 2 01:10:35 2015 +0200 news: submit reworded announcement Signed-off-by: Lydia Pintscher diff --git a/src/index b/src/index index 8d7fe33..a93f060 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,36 @@ News + August 1st, 2015, A message from the FFmpeg project + +Dear multimedia community, + + +The resignation of Michael Niedermayer as leader of FFmpeg yesterday has +come by surprise. He has worked tirelessly on the FFmpeg project for many +years and we must thank him for the work that he has done. We hope that in +the future he will continue to contribute to the project. In the coming +weeks, the FFmpeg project is managed by the active contributors. + + +The last four years have not been easy for our multimedia community - both +contributors and users. We should now look to the future, try to find +solutions to these issues, and to have reconciliation between the forks, +which have split the community for so long. + + +Unfortunately, much of the disagreement has taken place in inappropriate +venues so far, which has made finding common ground and solutions +difficult. We aim to discuss this in our communities online over the coming +weeks, and in person at the https://www.videolan.org/videolan/events/vdd15/";>VideoLAN Developer +Days in Paris in September: a neutral venue for the entire open source +multimedia community. + + +The FFmpeg project. + + July 4th, 2015, FFmpeg needs a new host After graciously hosting our projects (http://www.ffmpeg.org";>FFmpeg, http://www.mplayerhq.hu";>MPlayer --- Summary of changes: src/index | 30 ++ 1 file changed, 30 insertions(+) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 44f4b5d News: Minor grammar change
The branch, master has been updated via 44f4b5d7a8d5a99ff7377e27e50ab236470c7514 (commit) from 636d63b6f3b0ae4b9d0ad5d0c0126b4eeda5db5c (commit) - Log - commit 44f4b5d7a8d5a99ff7377e27e50ab236470c7514 Author: Kieran Kunhya AuthorDate: Sun Aug 2 00:24:08 2015 +0100 Commit: Kieran Kunhya CommitDate: Sun Aug 2 00:24:08 2015 +0100 News: Minor grammar change diff --git a/src/index b/src/index index a93f060..884edfd 100644 --- a/src/index +++ b/src/index @@ -46,7 +46,7 @@ come by surprise. He has worked tirelessly on the FFmpeg project for many years and we must thank him for the work that he has done. We hope that in the future he will continue to contribute to the project. In the coming -weeks, the FFmpeg project is managed by the active contributors. +weeks, the FFmpeg project will be managed by the active contributors. The last four years have not been easy for our multimedia community - both --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. b598b2d Update about servers
The branch, master has been updated via b598b2d9614adda23206711b8e4f8b708b5d567d (commit) from 44f4b5d7a8d5a99ff7377e27e50ab236470c7514 (commit) - Log - commit b598b2d9614adda23206711b8e4f8b708b5d567d Author: Michael Niedermayer AuthorDate: Sun Aug 2 01:39:55 2015 +0200 Commit: Michael Niedermayer CommitDate: Sun Aug 2 01:47:08 2015 +0200 Update about servers Signed-off-by: Michael Niedermayer diff --git a/src/index b/src/index index 884edfd..d5c3106 100644 --- a/src/index +++ b/src/index @@ -68,6 +68,7 @@ July 4th, 2015, FFmpeg needs a new host + UPDATE: We have received more than 7 offers for hosting and servers, thanks a lot to everyone! After graciously hosting our projects (http://www.ffmpeg.org";>FFmpeg, http://www.mplayerhq.hu";>MPlayer and http://rtmpdump.mplayerhq.hu";>rtmpdump) for 4 years, Arpi (our hoster) has informed us that we have to secure a new host somewhere else immediately. --- Summary of changes: src/index | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 5eb77b8 web/index: use "audio" and "video" in place of "audios" and "videos"
The branch, master has been updated via 5eb77b8499027e943539cd03985b8f79e9fcedcb (commit) from b598b2d9614adda23206711b8e4f8b708b5d567d (commit) - Log - commit 5eb77b8499027e943539cd03985b8f79e9fcedcb Author: Stefano Sabatini AuthorDate: Wed Aug 12 16:07:44 2015 +0200 Commit: Stefano Sabatini CommitDate: Wed Aug 12 16:07:44 2015 +0200 web/index: use "audio" and "video" in place of "audios" and "videos" "Audios" is a dubious English term, "audio" sounds more correct and more generic. diff --git a/src/index b/src/index index d5c3106..7a24517 100644 --- a/src/index +++ b/src/index @@ -18,7 +18,7 @@ -Converting videos and audios has never been so easy. +Converting video and audio has never been so easy. $ ffmpeg -i input.mp4 output.avi --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. fa2da62 web/download: add FFmpeg 2.4.11
The branch, master has been updated via fa2da62dde2e5589b4737117790d74cea793f681 (commit) from 5eb77b8499027e943539cd03985b8f79e9fcedcb (commit) - Log - commit fa2da62dde2e5589b4737117790d74cea793f681 Author: Michael Niedermayer AuthorDate: Tue Aug 25 11:49:12 2015 +0200 Commit: Michael Niedermayer CommitDate: Tue Aug 25 11:49:12 2015 +0200 web/download: add FFmpeg 2.4.11 diff --git a/src/download b/src/download index 244bcff..219030e 100644 --- a/src/download +++ b/src/download @@ -392,13 +392,13 @@ libpostproc53. 3.100 -FFmpeg 2.4.10 "Fresnel" +FFmpeg 2.4.11 "Fresnel" -2.4.10 was released on 2015-06-03. It is the latest stable FFmpeg release +2.4.11 was released on 2015-08-25. It is the latest stable FFmpeg release from the 2.4 release branch, which was cut from master on 2014-09-14. Amongst lots of other changes, it includes all changes from -ffmpeg-mt, libav master of 2014-09-14, libav 11.4 as of 2015-06-03. +ffmpeg-mt, libav master of 2014-09-14, libav 11.4 as of 2015-08-25. It includes the following library versions: @@ -415,15 +415,15 @@ libpostproc53. 0.100 - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.4.10";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.4.11";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.4";>Release Notes --- Summary of changes: src/download | 16 1 file changed, 8 insertions(+), 8 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 2b30656 src/download: use a https based link for main "Browse" button
The branch, master has been updated via 2b30656b7048b1746d943a49fe1cc8c8a8502404 (commit) from fa2da62dde2e5589b4737117790d74cea793f681 (commit) - Log - commit 2b30656b7048b1746d943a49fe1cc8c8a8502404 Author: Michael Niedermayer AuthorDate: Sun Sep 6 01:21:41 2015 +0200 Commit: Michael Niedermayer CommitDate: Sun Sep 6 01:22:52 2015 +0200 src/download: use a https based link for main "Browse" button diff --git a/src/download b/src/download index 219030e..056736d 100644 --- a/src/download +++ b/src/download @@ -135,7 +135,7 @@ Snapshot -http://git.videolan.org/?p=ffmpeg.git;a=tree"; class="btn btn-success"> +https://github.com/FFmpeg/FFmpeg"; class="btn btn-success"> Browse --- Summary of changes: src/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 019a509 web/security: Add FFmpeg 2.7.2, 2.6.4, 2.5.8, 2.4.11
/security index 67f2ec5..d9834e4 100644 --- a/src/security +++ b/src/security @@ -7,7 +7,7 @@ Fixes following vulnerabilities: -CVE-2015-3395 f7e1367f58263593e6cee3c282f7277d7ee9d553 +CVE-2015-3395, f7e1367f58263593e6cee3c282f7277d7ee9d553 --- Summary of changes: src/security | 63 +++- 1 file changed, 62 insertions(+), 1 deletion(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 19526bd web: add FFmpeg 2.8
The branch, master has been updated via 19526bdc7803ad605b51a437f9e201c47cbf61c2 (commit) from 019a509cc269b438f35930ef4cf8930a006a44b9 (commit) - Log - commit 19526bdc7803ad605b51a437f9e201c47cbf61c2 Author: Michael Niedermayer AuthorDate: Wed Sep 9 04:19:59 2015 +0200 Commit: Michael Niedermayer CommitDate: Wed Sep 9 04:19:59 2015 +0200 web: add FFmpeg 2.8 diff --git a/src/download b/src/download index 056736d..880d52a 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.7.2.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.8.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.7.2.tar.bz2 + ffmpeg-2.8.tar.bz2 More releases @@ -265,6 +265,48 @@ + +FFmpeg 2.8 "Feynman" + + +2.8 was released on 2015-09-09. It is the latest stable FFmpeg release +from the 2.8 release branch, which was cut from master on 2015-09-05. +Amongst lots of other changes, it includes all changes from +ffmpeg-mt, libav master of 2015-08-28, libav 11 as of 2015-08-28. + + It includes the following library versions: + + +libavutil 54. 31.100 +libavcodec 56. 60.100 +libavformat56. 40.101 +libavdevice56. 4.100 +libavfilter 5. 40.101 +libavresample 2. 1. 0 +libswscale 3. 1.101 +libswresample 1. 2.101 +libpostproc53. 3.100 + + + + Download xz tarball + PGP signature + + + Download bzip2 tarball + PGP signature + + + Download gzip tarball + PGP signature + + + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes + + + + FFmpeg 2.7.2 "Nash" diff --git a/src/security b/src/security index 64b66cd..ddb04f7 100644 --- a/src/security +++ b/src/security @@ -1,5 +1,24 @@ Please report vulnerabilities to mailto:ffmpeg-secur...@ffmpeg.org";>ffmpeg-secur...@ffmpeg.org +FFmpeg 2.8 + +2.8 + +Fixes following vulnerabilities: + + +CVE-2015-6818, 47f4e2d8960ca756ca153ab8e3e93d80449b8c91 +CVE-2015-6819, 84afc6b70d24fc0bf686e43138c96cf60a9445fe +CVE-2015-6820, 79a98294da6cd85f8c86b34764c5e0c43b09eea3 +CVE-2015-6821, b160fc290cf49b516c5b6ee0730fd9da7fc623b1 +CVE-2015-6822, 39bbdebb1ed8eb9c9b0cd6db85afde6ba89d86e4 +CVE-2015-6823, f7068bf277a37479aecde2832208d820682b35e6 +CVE-2015-6824, a5d44d5c220e12ca0cb7a4eceb0f74759cb13111 +CVE-2015-6825, f1a38264f20382731cf2cc75fdd98f4c9a84a626 +CVE-2015-6826, 3197c0aa87a3b7190e17d49e6fbc7b554e4b3f0a + + + FFmpeg 2.7 2.7.2 --- Summary of changes: src/download | 46 -- src/security | 19 +++ 2 files changed, 63 insertions(+), 2 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 8645e39 web: Move 2.2 to olddownloads
The branch, master has been updated via 8645e398eeb344455ee3bfd5868204fcaa72c262 (commit) from 19526bdc7803ad605b51a437f9e201c47cbf61c2 (commit) - Log - commit 8645e398eeb344455ee3bfd5868204fcaa72c262 Author: Michael Niedermayer AuthorDate: Wed Sep 9 04:28:51 2015 +0200 Commit: Michael Niedermayer CommitDate: Wed Sep 9 04:28:51 2015 +0200 web: Move 2.2 to olddownloads Nothing on https://trac.ffmpeg.org/wiki/Downstreams uses it anymore diff --git a/src/download b/src/download index 880d52a..b5ec1c3 100644 --- a/src/download +++ b/src/download @@ -470,41 +470,6 @@ libpostproc53. 0.100 - -FFmpeg 2.2.16 "Muybridge" - - -2.2.16 was released on 2015-06-18. It is the latest stable FFmpeg release -from the 2.2 release branch, which was cut from master on 2014-03-01. -Amongst lots of other changes, it includes all changes from -ffmpeg-mt, libav master of 2014-03-01, libav 10.7 as of 2015-06-18. - - It includes the following library versions: - - -libavutil 52. 66.100 -libavcodec 55. 52.102 -libavformat55. 33.100 -libavdevice55. 10.100 -libavfilter 4. 2.100 -libavresample 1. 2. 0 -libswscale 2. 5.102 -libswresample 0. 18.100 -libpostproc52. 3.100 - - - - Download bzip2 tarball - PGP signature - - - Download gzip tarball - PGP signature - - - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.2.16";>Changelog - - Old Releases diff --git a/src/olddownload b/src/olddownload index a976659..45f3e31 100644 --- a/src/olddownload +++ b/src/olddownload @@ -42,6 +42,43 @@ libpostproc52. 3.100 + +FFmpeg 2.2.16 "Muybridge" + + +2.2.16 was released on 2015-06-18. It is the latest stable FFmpeg release +from the 2.2 release branch, which was cut from master on 2014-03-01. +Amongst lots of other changes, it includes all changes from +ffmpeg-mt, libav master of 2014-03-01, libav 10.7 as of 2015-06-18. + + It includes the following library versions: + + +libavutil 52. 66.100 +libavcodec 55. 52.102 +libavformat55. 33.100 +libavdevice55. 10.100 +libavfilter 4. 2.100 +libavresample 1. 2. 0 +libswscale 2. 5.102 +libswresample 0. 18.100 +libpostproc52. 3.100 + + + + Download bzip2 tarball + PGP signature + + + Download gzip tarball + PGP signature + + + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.2.16";>Changelog + + + + FFmpeg 2.1.8 "Fourier" --- Summary of changes: src/download| 35 --- src/olddownload | 37 + 2 files changed, 37 insertions(+), 35 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. eb9871c web/documentation: Add FFmpeg 2.8 Doxygen link
The branch, master has been updated via eb9871c0532b9c4bbd758d444306ff2d19e88031 (commit) from 8645e398eeb344455ee3bfd5868204fcaa72c262 (commit) - Log - commit eb9871c0532b9c4bbd758d444306ff2d19e88031 Author: Michael Niedermayer AuthorDate: Thu Sep 10 11:45:38 2015 +0200 Commit: Michael Niedermayer CommitDate: Thu Sep 10 11:45:38 2015 +0200 web/documentation: Add FFmpeg 2.8 Doxygen link diff --git a/src/documentation b/src/documentation index 052af87..b48cca5 100644 --- a/src/documentation +++ b/src/documentation @@ -81,6 +81,7 @@ Doxygen documentation for current trunk (regenerated nightly); documentation for the + 2.8, 2.7, 2.6, 2.5, --- Summary of changes: src/documentation | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. f151c3e web/news: announce FFmpeg 2.8
The branch, master has been updated via f151c3e58644a79de7693b587e20ea33e95db0ef (commit) from eb9871c0532b9c4bbd758d444306ff2d19e88031 (commit) - Log - commit f151c3e58644a79de7693b587e20ea33e95db0ef Author: Thomas Volkert AuthorDate: Thu Sep 10 23:17:16 2015 +0200 Commit: Michael Niedermayer CommitDate: Thu Sep 10 23:44:02 2015 +0200 web/news: announce FFmpeg 2.8 Github: Closes #3 diff --git a/src/index b/src/index index 7a24517..9d12a7b 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,17 @@ News + September 9th, 2015, FFmpeg 2.8 + +We published release 2.8 as new major version. +It contains all features and bug fixes of the git master branch from September 8th. Please see +the https://raw.githubusercontent.com/FFmpeg/FFmpeg/release/2.8/Changelog";>changelog +for a list of the most important changes. + + +We recommend users, distributors and system integrators to upgrade unless they use current git master. + + August 1st, 2015, A message from the FFmpeg project Dear multimedia community, --- Summary of changes: src/index | 11 +++ 1 file changed, 11 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. bf04c2a web/download: Add FFmpeg 2.8.5
The branch, master has been updated via bf04c2ab8cfabfdd3d84abc315840837998ced6a (commit) from ed0d018a060c2afacdbf37e2384ffd4a4fd61c29 (commit) - Log - commit bf04c2ab8cfabfdd3d84abc315840837998ced6a Author: Michael Niedermayer AuthorDate: Fri Jan 15 18:07:02 2016 +0100 Commit: Michael Niedermayer CommitDate: Fri Jan 15 18:07:02 2016 +0100 web/download: Add FFmpeg 2.8.5 Signed-off-by: Michael Niedermayer diff --git a/src/download b/src/download index 0b9486e..51cd78a 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.8.4.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.8.5.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.8.4.tar.bz2 + ffmpeg-2.8.5.tar.bz2 More releases @@ -270,10 +270,10 @@ - FFmpeg 2.8.4 "Feynman" + FFmpeg 2.8.5 "Feynman" -2.8.4 was released on 2015-12-20. It is the latest stable FFmpeg release +2.8.5 was released on 2016-01-15. It is the latest stable FFmpeg release from the 2.8 release branch, which was cut from master on 2015-09-05. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-08-28, libav 11 as of 2015-08-28. @@ -293,19 +293,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.4";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.5";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes --- Summary of changes: src/download | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 2bea4a1 web/security: add 2.7.5 and 2.8.5
The branch, master has been updated via 2bea4a182573f367d20fbe0e8ac0a3a0c2df21ac (commit) via 971fba38645e38612acb50d1ef083edd744f1c47 (commit) from bf04c2ab8cfabfdd3d84abc315840837998ced6a (commit) - Log - commit 2bea4a182573f367d20fbe0e8ac0a3a0c2df21ac Author: Michael Niedermayer AuthorDate: Fri Jan 15 18:42:10 2016 +0100 Commit: Michael Niedermayer CommitDate: Fri Jan 15 18:42:54 2016 +0100 web/security: add 2.7.5 and 2.8.5 diff --git a/src/security b/src/security index af42cab..4e937f3 100644 --- a/src/security +++ b/src/security @@ -2,6 +2,16 @@ FFmpeg 2.8 +2.8.5 + +Fixes following vulnerabilities: + + +CVE-2016-1897,CVE-2016-1898, 23b903aaf4eefb1ce1396a32525c8e5501d5cec8 / 6ba42b6482c725a59eb468391544dc0c75b8c6f0 +CVE-2016-1897,CVE-2016-1898, b7d54d6e072690a62d5ea5ade66ffce6944a5ff4 / 7145e80b4f78cff5ed5fee04d4c4d53daaa0e077 +CVE-2016-1897,CVE-2016-1898, 28f89bc439be1de9a61ac404ce79f9bc4cac5ec8 / cfda1bea4c18ec1edbc11ecc465f788b02851488 + + 2.8.4 Fixes following vulnerabilities: @@ -53,6 +63,16 @@ CVE-2015-6826, 3197c0aa87a3b7190e17d49e6fbc7b554e4b3f0a FFmpeg 2.7 +2.7.5 + +Fixes following vulnerabilities: + + +CVE-2016-1897,CVE-2016-1898, 123d356829d6d72f75c820a184fee3dc7086dde0 / 6ba42b6482c725a59eb468391544dc0c75b8c6f0 +CVE-2016-1897,CVE-2016-1898, cde38373d134e6cf6a92d900fb2f3ce996e4655c / 7145e80b4f78cff5ed5fee04d4c4d53daaa0e077 +CVE-2016-1897,CVE-2016-1898, e681e92d2c8a46feb11ce1f36ff82c16e37cfe11 / cfda1bea4c18ec1edbc11ecc465f788b02851488 + + 2.7.4 Fixes following vulnerabilities: commit 971fba38645e38612acb50d1ef083edd744f1c47 Author: Michael Niedermayer AuthorDate: Fri Jan 15 18:41:32 2016 +0100 Commit: Michael Niedermayer CommitDate: Fri Jan 15 18:41:32 2016 +0100 web/download: add FFmpeg 2.7.5 Signed-off-by: Michael Niedermayer diff --git a/src/download b/src/download index 51cd78a..61172ce 100644 --- a/src/download +++ b/src/download @@ -311,11 +311,11 @@ libpostproc53. 3.100 - FFmpeg 2.7.4 "Nash" + FFmpeg 2.7.5 "Nash" -2.7.4 was released on 2015-12-21. It is the latest stable FFmpeg release -from the 2.7.4 release branch, which was cut from master on 2015-06-09. +2.7.5 was released on 2016-01-15. It is the latest stable FFmpeg release +from the 2.7.5 release branch, which was cut from master on 2015-06-09. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-06-10, libav 11 as of 2015-06-11. @@ -334,19 +334,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.4";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.5";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes --- Summary of changes: src/download | 20 ++-- src/security | 20 2 files changed, 30 insertions(+), 10 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. c181f9e web: add FFmpeg 2.6.7
The branch, master has been updated via c181f9eba5b1bfed572d661578c6e436228716de (commit) from 2bea4a182573f367d20fbe0e8ac0a3a0c2df21ac (commit) - Log - commit c181f9eba5b1bfed572d661578c6e436228716de Author: Michael Niedermayer AuthorDate: Fri Jan 15 22:35:34 2016 +0100 Commit: Michael Niedermayer CommitDate: Fri Jan 15 22:35:34 2016 +0100 web: add FFmpeg 2.6.7 diff --git a/src/download b/src/download index 61172ce..bb11410 100644 --- a/src/download +++ b/src/download @@ -352,10 +352,10 @@ libpostproc53. 3.100 - FFmpeg 2.6.6 "Grothendieck" + FFmpeg 2.6.7 "Grothendieck" -2.6.6 was released on 2015-12-22. It is the latest stable FFmpeg release +2.6.7 was released on 2016-01-15. It is the latest stable FFmpeg release from the 2.6 release branch, which was cut from master on 2015-03-06. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-03-06, libav 11 as of 2015-03-06. @@ -375,19 +375,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.6";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.7";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.6";>Release Notes diff --git a/src/security b/src/security index 4e937f3..d8023b3 100644 --- a/src/security +++ b/src/security @@ -124,6 +124,16 @@ CVE-2015-3395, f7e1367f58263593e6cee3c282f7277d7ee9d553 FFmpeg 2.6 +2.6.7 + +Fixes following vulnerabilities: + + +CVE-2016-1897,CVE-2016-1898, 232c2ed4a4a546ee28b84dc1673660fbfeb08d2f / 6ba42b6482c725a59eb468391544dc0c75b8c6f0 +CVE-2016-1897,CVE-2016-1898, 8b93f6676b89d23bc5f6e0f4e0afac469de881b9 / 7145e80b4f78cff5ed5fee04d4c4d53daaa0e077 +CVE-2016-1897,CVE-2016-1898, 82db8bcffae0010c638a01069d0754c06960470d / cfda1bea4c18ec1edbc11ecc465f788b02851488 + + 2.6.6 Fixes following vulnerabilities: --- Summary of changes: src/download | 18 +- src/security | 10 ++ 2 files changed, 19 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 49e5ce0 web: Add FFmpeg 2.5.10
The branch, master has been updated via 49e5ce0e2cb34e58a704f4a4683ccb16989586c6 (commit) from c181f9eba5b1bfed572d661578c6e436228716de (commit) - Log - commit 49e5ce0e2cb34e58a704f4a4683ccb16989586c6 Author: Michael Niedermayer AuthorDate: Sat Jan 16 03:08:38 2016 +0100 Commit: Michael Niedermayer CommitDate: Sat Jan 16 03:08:38 2016 +0100 web: Add FFmpeg 2.5.10 diff --git a/src/download b/src/download index bb11410..bab9f52 100644 --- a/src/download +++ b/src/download @@ -393,10 +393,10 @@ libpostproc53. 3.100 - FFmpeg 2.5.9 "Bohr" + FFmpeg 2.5.10 "Bohr" -2.5.9 was released on 2015-12-07. It is the latest stable FFmpeg release +2.5.10 was released on 2016-01-16. It is the latest stable FFmpeg release from the 2.5 release branch, which was cut from master on 2014-12-15. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2014-12-03, libav 11 as of 2014-12-03. @@ -416,19 +416,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.9";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.10";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.5";>Release Notes diff --git a/src/security b/src/security index d8023b3..dfba6aa 100644 --- a/src/security +++ b/src/security @@ -192,6 +192,16 @@ CVE-2015-3417, e8714f6f93d1a32f4e4655209960afcf4c185214 FFmpeg 2.5 +2.5.10 + +Fixes following vulnerabilities: + + +CVE-2016-1897,CVE-2016-1898, 8d5060192cf2bdd9e504e640bc5aafee3a04b99b / 6ba42b6482c725a59eb468391544dc0c75b8c6f0 +CVE-2016-1897,CVE-2016-1898, e183075dc11b2033f3f84bf8c94bd4b31266e90d / 7145e80b4f78cff5ed5fee04d4c4d53daaa0e077 +CVE-2016-1897,CVE-2016-1898, 83913c6e7e1e2f0d2e5550800e93ec64f31a0077 / cfda1bea4c18ec1edbc11ecc465f788b02851488 + + 2.5.9 Fixes following vulnerabilities: --- Summary of changes: src/download | 18 +- src/security | 10 ++ 2 files changed, 19 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. ab050ba News entry for FFmpeg 2.8.5, 2.7.5, 2.6.7, 2.5.10
The branch, master has been updated via ab050ba5161e678f625523bb91aeee720bb56e12 (commit) from 49e5ce0e2cb34e58a704f4a4683ccb16989586c6 (commit) - Log - commit ab050ba5161e678f625523bb91aeee720bb56e12 Author: Michael Niedermayer AuthorDate: Sat Jan 16 03:14:29 2016 +0100 Commit: Michael Niedermayer CommitDate: Sat Jan 16 14:29:52 2016 +0100 News entry for FFmpeg 2.8.5, 2.7.5, 2.6.7, 2.5.10 diff --git a/src/index b/src/index index 554ad0e..eca556e 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,20 @@ News + January 16, 2015, FFmpeg 2.8.5, 2.7.5, 2.6.7, 2.5.10 + +We have made several new point releases (2.8.5, + 2.7.5, + 2.6.7, + 2.5.10). +They fix various bugs, as well as CVE-2016-1897 and CVE-2016-1898. +Please see the changelog for each release for more details. + + +We recommend users, distributors and system integrators to upgrade unless they use +current git master. + + December 5th, 2015, The native FFmpeg AAC encoder is now stable! After seven years the native FFmpeg AAC encoder has had its experimental flag --- Summary of changes: src/index | 14 ++ 1 file changed, 14 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. f12f590 web: fix typo
The branch, master has been updated via f12f590648f81b31c3d608303f57f0f8d50e5449 (commit) from ab050ba5161e678f625523bb91aeee720bb56e12 (commit) - Log - commit f12f590648f81b31c3d608303f57f0f8d50e5449 Author: Michael Niedermayer AuthorDate: Sat Jan 16 17:05:20 2016 +0100 Commit: Michael Niedermayer CommitDate: Sat Jan 16 17:05:20 2016 +0100 web: fix typo Signed-off-by: Michael Niedermayer diff --git a/src/index b/src/index index eca556e..8680ef0 100644 --- a/src/index +++ b/src/index @@ -37,7 +37,7 @@ News - January 16, 2015, FFmpeg 2.8.5, 2.7.5, 2.6.7, 2.5.10 + January 16, 2016, FFmpeg 2.8.5, 2.7.5, 2.6.7, 2.5.10 We have made several new point releases (2.8.5, 2.7.5, --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. e5dda59 Add news entry on removal of libvo-aacenc and libaacplus
The branch, master has been updated via e5dda59cdf8d4a82511a352efbb8194241a966b7 (commit) from f12f590648f81b31c3d608303f57f0f8d50e5449 (commit) - Log - commit e5dda59cdf8d4a82511a352efbb8194241a966b7 Author: Timothy Gu AuthorDate: Fri Jan 29 19:41:33 2016 -0800 Commit: Timothy Gu CommitDate: Sat Jan 30 09:25:49 2016 -0800 Add news entry on removal of libvo-aacenc and libaacplus Reviewed-by: Lou Logan diff --git a/src/index b/src/index index 8680ef0..827d803 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,47 @@ News + January 30, 2016, Removing support for two external AAC encoders + +We have just removed support for VisualOn AAC encoder (libvo-aacenc) and +libaacplus in FFmpeg master. + + +Even before marking our internal AAC encoder as +stable, it was known that libvo-aacenc +was of an inferior quality compared to our native one for most samples. +However, the VisualOn encoder was used extensively by the Android Open +Source Project, and we would like to have a tested-and-true stable option +in our code base. + + +When first committed in 2011, libaacplus filled in the gap of encoding +High Efficiency AAC formats (HE-AAC and HE-AACv2), which was not supported +by any of the encoders in FFmpeg at that time. + + +The circumstances for both have changed. After the work spearheaded by +Rostislav Pehlivanov and Claudio Freire, the now-stable FFmpeg native AAC +encoder is ready to compete with much more mature encoders. The Fraunhofer +FDK AAC Codec Library for Android was added in 2012 as the fourth +supported external AAC encoder, and the one with the best quality and the +most features supported, including HE-AAC and HE-AACv2. + + +Therefore, we have decided that it is time to remove libvo-aacenc and +libaacplus. If you are currently using libvo-aacenc, prepare to transition +to the native encoder (aac) when updating to the next version +of FFmpeg. In most cases it is as simple as merely swapping the encoder +name. If you are currently using libaacplus, start using FDK AAC +(libfdk_aac) with an appropriate profile option +to select the exact AAC profile that fits your needs. In both cases, you +will enjoy an audible quality improvement and as well as fewer licensing +headaches. + + +Enjoy! + + January 16, 2016, FFmpeg 2.8.5, 2.7.5, 2.6.7, 2.5.10 We have made several new point releases (2.8.5, --- Summary of changes: src/index | 41 + 1 file changed, 41 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 887191a web/download: add FFmpeg 2.8.6
The branch, master has been updated via 887191a9ac3fa75fa48da44eed34f71aea4ad8ae (commit) from e5dda59cdf8d4a82511a352efbb8194241a966b7 (commit) - Log - commit 887191a9ac3fa75fa48da44eed34f71aea4ad8ae Author: Michael Niedermayer AuthorDate: Mon Feb 1 02:08:07 2016 +0100 Commit: Michael Niedermayer CommitDate: Mon Feb 1 02:08:38 2016 +0100 web/download: add FFmpeg 2.8.6 diff --git a/src/download b/src/download index bab9f52..4ac9c90 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.8.5.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-2.8.6.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.8.5.tar.bz2 + ffmpeg-2.8.6.tar.bz2 More releases @@ -270,10 +270,10 @@ - FFmpeg 2.8.5 "Feynman" + FFmpeg 2.8.6 "Feynman" -2.8.5 was released on 2016-01-15. It is the latest stable FFmpeg release +2.8.6 was released on 2016-02-01. It is the latest stable FFmpeg release from the 2.8 release branch, which was cut from master on 2015-09-05. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-08-28, libav 11 as of 2015-08-28. @@ -293,19 +293,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.5";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.6";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes --- Summary of changes: src/download | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 1116bc6 web/download: add FFmpeg 2.7.6
The branch, master has been updated via 1116bc6641d7a181c92e13e132f3602f1ed6c33a (commit) from 887191a9ac3fa75fa48da44eed34f71aea4ad8ae (commit) - Log - commit 1116bc6641d7a181c92e13e132f3602f1ed6c33a Author: Michael Niedermayer AuthorDate: Mon Feb 1 02:57:30 2016 +0100 Commit: Michael Niedermayer CommitDate: Mon Feb 1 02:57:30 2016 +0100 web/download: add FFmpeg 2.7.6 diff --git a/src/download b/src/download index 4ac9c90..b75a03f 100644 --- a/src/download +++ b/src/download @@ -311,11 +311,11 @@ libpostproc53. 3.100 - FFmpeg 2.7.5 "Nash" + FFmpeg 2.7.6 "Nash" -2.7.5 was released on 2016-01-15. It is the latest stable FFmpeg release -from the 2.7.5 release branch, which was cut from master on 2015-06-09. +2.7.6 was released on 2016-02-01. It is the latest stable FFmpeg release +from the 2.7.6 release branch, which was cut from master on 2015-06-09. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-06-10, libav 11 as of 2015-06-11. @@ -334,19 +334,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.5";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.6";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes --- Summary of changes: src/download | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. fa83cf8 web/download: add FFmpeg 2.6.8
The branch, master has been updated via fa83cf8154be61f96821232bfac4af6c181322fe (commit) from 1116bc6641d7a181c92e13e132f3602f1ed6c33a (commit) - Log - commit fa83cf8154be61f96821232bfac4af6c181322fe Author: Michael Niedermayer AuthorDate: Mon Feb 1 03:44:08 2016 +0100 Commit: Michael Niedermayer CommitDate: Mon Feb 1 03:44:08 2016 +0100 web/download: add FFmpeg 2.6.8 diff --git a/src/download b/src/download index b75a03f..e11216e 100644 --- a/src/download +++ b/src/download @@ -352,10 +352,10 @@ libpostproc53. 3.100 - FFmpeg 2.6.7 "Grothendieck" + FFmpeg 2.6.8 "Grothendieck" -2.6.7 was released on 2016-01-15. It is the latest stable FFmpeg release +2.6.8 was released on 2016-02-01. It is the latest stable FFmpeg release from the 2.6 release branch, which was cut from master on 2015-03-06. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-03-06, libav 11 as of 2015-03-06. @@ -375,19 +375,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.7";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.8";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.6";>Release Notes --- Summary of changes: src/download | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. c048f88 web: Move 2.4 to old releases
The branch, master has been updated via c048f889eb436eb9ca9aa3de273591db5035bb8a (commit) via ce3e1421925e3270b08ee1843a2759f94f7aecbe (commit) from fa83cf8154be61f96821232bfac4af6c181322fe (commit) - Log - commit c048f889eb436eb9ca9aa3de273591db5035bb8a Author: Michael Niedermayer AuthorDate: Tue Feb 2 18:31:17 2016 +0100 Commit: Michael Niedermayer CommitDate: Tue Feb 2 18:31:17 2016 +0100 web: Move 2.4 to old releases diff --git a/src/download b/src/download index 0d6887c..3c1393f 100644 --- a/src/download +++ b/src/download @@ -434,43 +434,6 @@ libpostproc53. 3.100 - FFmpeg 2.4.13 "Fresnel" - - -2.4.13 was released on 2016-02-01. It is the latest stable FFmpeg release -from the 2.4 release branch, which was cut from master on 2014-09-14. -Amongst lots of other changes, it includes all changes from -ffmpeg-mt, libav master of 2014-09-14, libav 11.4 as of 2015-08-25. - - It includes the following library versions: - - -libavutil 54. 7.100 -libavcodec 56. 1.100 -libavformat56. 4.101 -libavdevice56. 0.100 -libavfilter 5. 1.100 -libavresample 2. 1. 0 -libswscale 3. 0.100 -libswresample 1. 1.100 -libpostproc53. 0.100 - - - - Download bzip2 tarball - PGP signature - - - Download gzip tarball - PGP signature - - - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.4.13";>Changelog - http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.4";>Release Notes - - - - Old Releases Older versions are available at the Old diff --git a/src/olddownload b/src/olddownload index 08f0b8c..6f61f20 100644 --- a/src/olddownload +++ b/src/olddownload @@ -5,6 +5,44 @@ Contact us if you are interested in maintaining an old release. + + FFmpeg 2.4.13 "Fresnel" + + +2.4.13 was released on 2016-02-01. It is the latest stable FFmpeg release +from the 2.4 release branch, which was cut from master on 2014-09-14. +Amongst lots of other changes, it includes all changes from +ffmpeg-mt, libav master of 2014-09-14, libav 11.4 as of 2015-08-25. + + It includes the following library versions: + + +libavutil 54. 7.100 +libavcodec 56. 1.100 +libavformat56. 4.101 +libavdevice56. 0.100 +libavfilter 5. 1.100 +libavresample 2. 1. 0 +libswscale 3. 0.100 +libswresample 1. 1.100 +libpostproc53. 0.100 + + + + Download bzip2 tarball + PGP signature + + + Download gzip tarball + PGP signature + + + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.4.13";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.4";>Release Notes + + + + FFmpeg 2.3.6 "Mandelbrot" commit ce3e1421925e3270b08ee1843a2759f94f7aecbe Author: Michael Niedermayer AuthorDate: Tue Feb 2 18:30:02 2016 +0100 Commit: Michael Niedermayer CommitDate: Tue Feb 2 18:30:02 2016 +0100 web/download: Add 2.4.13 diff --git a/src/download b/src/download index e11216e..0d6887c 100644 --- a/src/download +++ b/src/download @@ -434,10 +434,10 @@ libpostproc53. 3.100 - FFmpeg 2.4.12 "Fresnel" + FFmpeg 2.4.13 "Fresnel" -2.4.12 was released on 2015-12-10. It is the latest stable FFmpeg release +2.4.13 was released on 2016-02-01. It is the latest stable FFmpeg release from the 2.4 release branch, which was cut from master on 2014-09-14. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2014-09-14, libav 11.4 as of 2015-08-25. @@ -457,15 +457,15 @@ libpostproc53. 0.100 - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.4.12";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.4.13";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.4";>Release Notes --- Summary of changes: src/download| 37 - src/olddownload | 38 ++ 2 files changed, 38 insertions(+), 37 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 7996e8e web/olddownload: 2nd try at writing todays date
The branch, master has been updated via 7996e8e395589ee1e04fb66ae1450950a346d674 (commit) from c048f889eb436eb9ca9aa3de273591db5035bb8a (commit) - Log - commit 7996e8e395589ee1e04fb66ae1450950a346d674 Author: Michael Niedermayer AuthorDate: Tue Feb 2 18:39:43 2016 +0100 Commit: Michael Niedermayer CommitDate: Tue Feb 2 18:39:43 2016 +0100 web/olddownload: 2nd try at writing todays date diff --git a/src/olddownload b/src/olddownload index 6f61f20..8ed5c43 100644 --- a/src/olddownload +++ b/src/olddownload @@ -9,7 +9,7 @@ FFmpeg 2.4.13 "Fresnel" -2.4.13 was released on 2016-02-01. It is the latest stable FFmpeg release +2.4.13 was released on 2016-02-02. It is the latest stable FFmpeg release from the 2.4 release branch, which was cut from master on 2014-09-14. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2014-09-14, libav 11.4 as of 2015-08-25. --- Summary of changes: src/olddownload | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 879101d web/download: add 2.5.11
The branch, master has been updated via 879101d364e856ef2c80ff1a2a84c56a0f1180c3 (commit) from 7996e8e395589ee1e04fb66ae1450950a346d674 (commit) - Log - commit 879101d364e856ef2c80ff1a2a84c56a0f1180c3 Author: Michael Niedermayer AuthorDate: Tue Feb 2 23:10:15 2016 +0100 Commit: Michael Niedermayer CommitDate: Tue Feb 2 23:10:15 2016 +0100 web/download: add 2.5.11 diff --git a/src/download b/src/download index 3c1393f..754bddb 100644 --- a/src/download +++ b/src/download @@ -393,10 +393,10 @@ libpostproc53. 3.100 - FFmpeg 2.5.10 "Bohr" + FFmpeg 2.5.11 "Bohr" -2.5.10 was released on 2016-01-16. It is the latest stable FFmpeg release +2.5.11 was released on 2016-02-02. It is the latest stable FFmpeg release from the 2.5 release branch, which was cut from master on 2014-12-15. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2014-12-03, libav 11 as of 2014-12-03. @@ -416,19 +416,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.10";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.5.11";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.5";>Release Notes --- Summary of changes: src/download | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 5317fd1 web/security: Add CVE-2016-2213 and 2.4.13 CVEs
The branch, master has been updated via 5317fd1ca1bb21a1bf8897f881ccbf4601693b03 (commit) from 879101d364e856ef2c80ff1a2a84c56a0f1180c3 (commit) - Log - commit 5317fd1ca1bb21a1bf8897f881ccbf4601693b03 Author: Michael Niedermayer AuthorDate: Wed Feb 3 14:09:36 2016 +0100 Commit: Michael Niedermayer CommitDate: Wed Feb 3 14:09:36 2016 +0100 web/security: Add CVE-2016-2213 and 2.4.13 CVEs Signed-off-by: Michael Niedermayer diff --git a/src/security b/src/security index dfba6aa..c629ae2 100644 --- a/src/security +++ b/src/security @@ -2,6 +2,14 @@ FFmpeg 2.8 +2.8.6 + +Fixes following vulnerabilities: + + +CVE-2016-2213, b15ae71305b29b497e7b56c7ae5f2982fb5e91ed / 0aada30510d809bccfd539a90ea37b61188f2cb4 + + 2.8.5 Fixes following vulnerabilities: @@ -63,6 +71,14 @@ CVE-2015-6826, 3197c0aa87a3b7190e17d49e6fbc7b554e4b3f0a FFmpeg 2.7 +2.7.6 + +Fixes following vulnerabilities: + + +CVE-2016-2213, 12f256a729a8d9f1f1ae37dc14fb4437b935b133 / 0aada30510d809bccfd539a90ea37b61188f2cb4 + + 2.7.5 Fixes following vulnerabilities: @@ -124,6 +140,14 @@ CVE-2015-3395, f7e1367f58263593e6cee3c282f7277d7ee9d553 FFmpeg 2.6 +2.6.8 + +Fixes following vulnerabilities: + + +CVE-2016-2213, 684e189eb3a57347904c3c97451e5bb3a27ecafb / 0aada30510d809bccfd539a90ea37b61188f2cb4 + + 2.6.7 Fixes following vulnerabilities: @@ -192,6 +216,14 @@ CVE-2015-3417, e8714f6f93d1a32f4e4655209960afcf4c185214 FFmpeg 2.5 +2.5.11 + +Fixes following vulnerabilities: + + +CVE-2016-2213, 69e191f854f75815f17099a9a5f911dc30075c70 / 0aada30510d809bccfd539a90ea37b61188f2cb4 + + 2.5.10 Fixes following vulnerabilities: @@ -284,6 +316,17 @@ CVE-2014-9319, ea38e5a6b75706477898eb1e6582d667dbb9946c FFmpeg 2.4 +2.4.13 + +Fixes following vulnerabilities: + + +CVE-2016-2213, a944744f197a747251ace1bb7eb58eee0341ca10 / 0aada30510d809bccfd539a90ea37b61188f2cb4 +CVE-2016-1897,CVE-2016-1898, 990abbd1c6123e39c8115b19967ba16bc69262b7 / 6ba42b6482c725a59eb468391544dc0c75b8c6f0 +CVE-2016-1897,CVE-2016-1898, 70b35708b91541052a9e776c6af7a024a2e39d29 / 7145e80b4f78cff5ed5fee04d4c4d53daaa0e077 +CVE-2016-1897,CVE-2016-1898, c0df58b0e5ecee6a5f91236a689395c1a8368461 / cfda1bea4c18ec1edbc11ecc465f788b02851488 + + 2.4.12 Fixes following vulnerabilities: --- Summary of changes: src/security | 43 +++ 1 file changed, 43 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. e6b50ad web/security: Add CVEs to recent releases
/ cfda1bea4c18ec1edbc11ecc465f788b02851488 +CVE-2016-2326, 8419971a42a84e6e72d498a4c2e3c91ea604d881 / 7c0b84d89911b2035161f5ef51aafbfcc84aa9e2 2.5.9 @@ -325,6 +347,11 @@ CVE-2016-2213, a944744f197a747251ace1bb7eb58eee0341ca10 / 0aada30510d809bccfd539 CVE-2016-1897,CVE-2016-1898, 990abbd1c6123e39c8115b19967ba16bc69262b7 / 6ba42b6482c725a59eb468391544dc0c75b8c6f0 CVE-2016-1897,CVE-2016-1898, 70b35708b91541052a9e776c6af7a024a2e39d29 / 7145e80b4f78cff5ed5fee04d4c4d53daaa0e077 CVE-2016-1897,CVE-2016-1898, c0df58b0e5ecee6a5f91236a689395c1a8368461 / cfda1bea4c18ec1edbc11ecc465f788b02851488 +CVE-2016-2326, 937f3058fa231cecd301fb1012e27807fd44f54b / 7c0b84d89911b2035161f5ef51aafbfcc84aa9e2 +CVE-2016-2328, af384c87035423c8f465a171ac73645e76821c94 / 757248ea3cd917a7755cb15f817a9b1f15578718 +CVE-2016-2328, e4b2c75c2a69861794fa65b0d33a583dbca2b061 / ad3b6fa7d83db7de951ed891649af93a47e74be5 +CVE-2016-2329, 7142ddcf92c695cce2530761331844adca1300a2 / 89f464e9c229006e16f6bb5403c5529fdd0a9edd +CVE-2016-2330, 49ae02d36f25963e8ef9ea1fba82a7e1c9914563 / 03d83ba34b2070878909eae18dfac0f519503777 2.4.12 --- Summary of changes: src/security | 27 +++ 1 file changed, 27 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. d82a23d web/download: add FFmpeg 3.0
The branch, master has been updated via d82a23d096c91b6f0e7e26b0322bcca72ab7cc2f (commit) from e6b50ad812be58521c655c2260fe9ce6eb5dcc78 (commit) - Log - commit d82a23d096c91b6f0e7e26b0322bcca72ab7cc2f Author: Michael Niedermayer AuthorDate: Mon Feb 15 03:52:20 2016 +0100 Commit: Michael Niedermayer CommitDate: Mon Feb 15 03:52:20 2016 +0100 web/download: add FFmpeg 3.0 diff --git a/src/download b/src/download index 754bddb..c3d53a2 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-2.8.6.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-3.0.tar.bz2"; class="btn btn-success"> Download - ffmpeg-2.8.6.tar.bz2 + ffmpeg-3.0.tar.bz2 More releases @@ -270,6 +270,45 @@ + FFmpeg 3.0 "Einstein" + + +3.0 was released on 2016-02-15. It is the latest stable FFmpeg release +from the 3.0 release branch, which was cut from master on 2016-02-14. + + It includes the following library versions: + + +libavutil 55. 17.103 +libavcodec 57. 24.102 +libavformat57. 25.100 +libavdevice57. 0.101 +libavfilter 6. 31.100 +libavresample 3. 0. 0 +libswscale 4. 0.100 +libswresample 2. 0.101 +libpostproc54. 0.100 + + + + Download xz tarball + PGP signature + + + Download bzip2 tarball + PGP signature + + + Download gzip tarball + PGP signature + + + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n3.0";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/3.0";>Release Notes + + + + FFmpeg 2.8.6 "Feynman" --- Summary of changes: src/download | 43 +-- 1 file changed, 41 insertions(+), 2 deletions(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 771c6d0 web/documentation: add 3.0 doxygen link
The branch, master has been updated via 771c6d075605fb03560b53addd6ea015f78d7d6b (commit) from d82a23d096c91b6f0e7e26b0322bcca72ab7cc2f (commit) - Log - commit 771c6d075605fb03560b53addd6ea015f78d7d6b Author: Michael Niedermayer AuthorDate: Mon Feb 15 15:20:46 2016 +0100 Commit: Michael Niedermayer CommitDate: Mon Feb 15 15:20:46 2016 +0100 web/documentation: add 3.0 doxygen link diff --git a/src/documentation b/src/documentation index b48cca5..872206e 100644 --- a/src/documentation +++ b/src/documentation @@ -81,6 +81,7 @@ Doxygen documentation for current trunk (regenerated nightly); documentation for the + 3.0, 2.8, 2.7, 2.6, --- Summary of changes: src/documentation | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. b45cf42 web: add FFmpeg 3.0 release news
The branch, master has been updated via b45cf42a57185684433912169f57aeafef9bb2eb (commit) from 771c6d075605fb03560b53addd6ea015f78d7d6b (commit) - Log - commit b45cf42a57185684433912169f57aeafef9bb2eb Author: Lou Logan AuthorDate: Mon Feb 22 23:45:43 2016 +0100 Commit: Lou Logan CommitDate: Mon Feb 22 17:31:24 2016 -0900 web: add FFmpeg 3.0 release news Based on a patch by Michael Niedermayer. Found-by: Ganesh Ajjanagadde Signed-off-by: Lou Logan diff --git a/src/index b/src/index index 827d803..31bfbd5 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,27 @@ News + February 15th, 2016, FFmpeg 3.0 "Einstein" + +FFmpeg 3.0 "Einstein", a new +major release, is now available! Some of the highlights: + + +The native FFmpeg AAC encoder has seen extensive improvements and is no longer considered experimental +Removed support for libvo-aacenc and libaacplus +Over 30 new filters have been added +Many ASM optimizations +VP9 Hardware Acceleration (DXVA2 and VA-API) +Cineform HD decoder +New DCA decoder based on libdcadec with full support for DTS-HD extensions +As with all major releases expect major backward incompatible API/ABI changes +See the https://git.videolan.org/?p=ffmpeg.git;a=blob_plain;f=Changelog;hb=n3.0";>Changelog for a list of more updates + + +We strongly recommend users, distributors, and system integrators to +upgrade unless they use current git master. + + January 30, 2016, Removing support for two external AAC encoders We have just removed support for VisualOn AAC encoder (libvo-aacenc) and --- Summary of changes: src/index | 21 + 1 file changed, 21 insertions(+) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 460cad1 web: fix a few validation errors in index page
The branch, master has been updated via 460cad16549518ec3d46c9ca040907e5ad4fe377 (commit) from b45cf42a57185684433912169f57aeafef9bb2eb (commit) - Log - commit 460cad16549518ec3d46c9ca040907e5ad4fe377 Author: Lou Logan AuthorDate: Mon Feb 22 17:49:59 2016 -0900 Commit: Lou Logan CommitDate: Mon Feb 22 17:49:59 2016 -0900 web: fix a few validation errors in index page Signed-off-by: Lou Logan diff --git a/src/index b/src/index index 31bfbd5..f3e60ea 100644 --- a/src/index +++ b/src/index @@ -205,13 +205,14 @@ a single client; it was completed partly during the qualification period and partly during the first week of the summer. Thanks to this work, it is now possible to make a simple HTTP stream using the following commands: - - ffmpeg -i /dev/video0 -listen 1 -f matroska \ - -c:v libx264 -preset fast -tune zerolatency http://:8080 - ffplay http://localhost:8080/ - + +ffmpeg -i /dev/video0 -listen 1 -f matroska \ +-c:v libx264 -preset fast -tune zerolatency http://:8080 +ffplay http://localhost:8080/ + + The next part of the project was to extend the code to be able to accept several clients, simultaneously or consecutively. Since libavformat did not @@ -322,11 +323,12 @@ He also added gamma corrected scaling support. An example to use gamma corrected scaling would be: - - ffmpeg -i input -vf scale=512:384:gamma=1 output - + +ffmpeg -i input -vf scale=512:384:gamma=1 output + + Pedro has done impressive work considering the short time available, and he is a FFmpeg committer now. He continues to contribute to --- Summary of changes: src/index | 18 ++ 1 file changed, 10 insertions(+), 8 deletions(-) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. a8164b5 web/consulting: add myself
The branch, master has been updated via a8164b5d2c8897d5e66696b94e149bf77af32cbd (commit) from 460cad16549518ec3d46c9ca040907e5ad4fe377 (commit) - Log - commit a8164b5d2c8897d5e66696b94e149bf77af32cbd Author: Lou Logan AuthorDate: Mon Feb 22 18:15:09 2016 -0900 Commit: Lou Logan CommitDate: Mon Feb 22 18:25:40 2016 -0900 web/consulting: add myself Been getting occassional consulting help emails for a while, so I might as well add myself here. Signed-off-by: Lou Logan diff --git a/src/consulting b/src/consulting index 85028bb..8990219 100644 --- a/src/consulting +++ b/src/consulting @@ -114,7 +114,7 @@ E.g.: worked on FFmpeg since 2011 and has been a maintainer since 2012. He has experience with various codecs, containers, filters and reverse engineering. You can contact him by email at -mailto:onemda at gmail dot com">onemda at gmail dot com. +mailto:onemda%20at%20gmail%20dot%20com";>onemda at gmail dot com. @@ -144,4 +144,16 @@ E.g.: + + + Lou Logan + +Lou is located in Alaska and is available for contract work, general +consulting, and troubleshooting involving the ffmpeg cli tool. +He has been a maintainer since 2011, and focuses on helping users, +documentation, and project communication. You can contact him by email at +mailto:lou%20at%20lrcd%20dot%20com";>lou at lrcd dot com. + + + --- Summary of changes: src/consulting | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 620e494 web/contact: Fix link.
The branch, master has been updated via 620e49476732fe02d4120bc1f7c8d92ddb5db0df (commit) from a8164b5d2c8897d5e66696b94e149bf77af32cbd (commit) - Log - commit 620e49476732fe02d4120bc1f7c8d92ddb5db0df Author: Simon Thelen AuthorDate: Thu Mar 3 21:09:46 2016 +0100 Commit: Michael Niedermayer CommitDate: Thu Mar 3 21:10:31 2016 +0100 web/contact: Fix link. Signed-off-by: Simon Thelen diff --git a/src/contact b/src/contact index 077f9ca..22c1e11 100644 --- a/src/contact +++ b/src/contact @@ -154,6 +154,6 @@ http://ffmpeg.zeranoe.com/forum/";>FFmpeg on Windows -http://ffmpeg.gusari.org/";>FFmpeg Support Forum +http://ffmpeg.gusari.org/index.php";>FFmpeg Support Forum --- Summary of changes: src/contact | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. dc07628 web/contact: add IRC web-client link
The branch, master has been updated via dc0762811b87f6cac18ab56bc415b771bc868676 (commit) from 620e49476732fe02d4120bc1f7c8d92ddb5db0df (commit) - Log - commit dc0762811b87f6cac18ab56bc415b771bc868676 Author: Ganesh Ajjanagadde AuthorDate: Sun Mar 6 22:33:30 2016 -0500 Commit: Lou Logan CommitDate: Sun Mar 6 18:59:54 2016 -0900 web/contact: add IRC web-client link Ran into some glitches when I initially tried accessing IRC through my browser; in particular the Firefox default of "mibbit" does not work: https://blog.freenode.net/2009/06/new-freenode-webchat-and-why-to-use-it/. Signed-off-by: Ganesh Ajjanagadde diff --git a/src/contact b/src/contact index 22c1e11..e84367b 100644 --- a/src/contact +++ b/src/contact @@ -102,6 +102,8 @@ IRC network. Both channels are open and unmoderated. Developers with commit rights have operator status, contributors with patches in FFmpeg have voice in the channels. + https://webchat.freenode.net/";>freenode webchat is a web + client for these channels. --- Summary of changes: src/contact | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. b5af634 web: News entry about GSoC2016
The branch, master has been updated via b5af63432925a84e7371ef1eb4883922bc42773a (commit) from dc0762811b87f6cac18ab56bc415b771bc868676 (commit) - Log - commit b5af63432925a84e7371ef1eb4883922bc42773a Author: Michael Niedermayer AuthorDate: Wed Mar 16 03:20:11 2016 +0100 Commit: Michael Niedermayer CommitDate: Wed Mar 16 03:21:33 2016 +0100 web: News entry about GSoC2016 Signed-off-by: Michael Niedermayer diff --git a/src/index b/src/index index f3e60ea..c469028 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,14 @@ News + March 16th, 2016, Google Summer of Code + +FFmpeg has been accepted as a https://summerofcode.withgoogle.com/";>Google Summer of Code open source organization. If you wish to +participate as a student see our https://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2016";>project ideas page. +You can already get in contact with mentors and start working on qualification tasks as well as register at google and submit your project proposal draft. +Good luck! + + February 15th, 2016, FFmpeg 3.0 "Einstein" FFmpeg 3.0 "Einstein", a new --- Summary of changes: src/index | 8 1 file changed, 8 insertions(+) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 8500f0f web/consulting: Add myself.
The branch, master has been updated via 8500f0f370cb2b34efba5977798e731eb68d805a (commit) from b5af63432925a84e7371ef1eb4883922bc42773a (commit) - Log - commit 8500f0f370cb2b34efba5977798e731eb68d805a Author: Thilo Borgmann AuthorDate: Tue Mar 22 12:39:45 2016 +0100 Commit: Lou Logan CommitDate: Tue Mar 22 10:36:35 2016 -0800 web/consulting: Add myself. diff --git a/src/consulting b/src/consulting index 8990219..0b03806 100644 --- a/src/consulting +++ b/src/consulting @@ -157,3 +157,17 @@ E.g.: + + + + Thilo Borgmann + +Thilo is located in Berlin, Germany and is available for contract work. +He has worked on FFmpeg since 2009 and has been a maintainer since 2010. +He has special expertise with decoders, metadata, input devices and +filters. You can contact him by email at +mailto:thilo.borgm...@mail.de";>thilo.borgm...@mail.de. + + + + --- Summary of changes: src/consulting | 14 ++ 1 file changed, 14 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 629c2c7 web: Fix RSS broken by b95c6584576e004e56d94fcdf6679d051a043bf4
The branch, master has been updated via 629c2c7cadd8e953f2c78086394c7d504d470287 (commit) from 8500f0f370cb2b34efba5977798e731eb68d805a (commit) - Log - commit 629c2c7cadd8e953f2c78086394c7d504d470287 Author: Michael Niedermayer AuthorDate: Sat Mar 26 13:53:11 2016 +0100 Commit: Michael Niedermayer CommitDate: Sat Mar 26 13:56:24 2016 +0100 web: Fix RSS broken by b95c6584576e004e56d94fcdf6679d051a043bf4 Found-by: Sebastian Scheibner Signed-off-by: Michael Niedermayer diff --git a/Makefile b/Makefile index f13a36f..0686e44 100644 --- a/Makefile +++ b/Makefile @@ -44,8 +44,8 @@ $(RSS_TARGET): htdocs/index.html echo 'http://ffmpeg.org' >> $@ echo 'FFmpeg RSS' >> $@ echo 'http://ffmpeg.org/main.rss"; rel="self" type="application/rss+xml" />' >> $@ - awk '/ *<\/a> *.*20.., *.*<\/h3>/ { p = 1 } /Older entries are in the .*news archive/ { p = 0 } p' $< \ -| sed 'sX * *\(.*20..\), *\(.*\)X\ + awk '/ *.*20.., *.*<\/h3>/ { p = 1 } /Older entries are in the .*news archive/ { p = 0 } p' $< \ +| sed 'sX *\(.*20..\), *\(.*\)X\ ]]>\ \ \ --- Summary of changes: Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. f6336ea web: Fix html/xml syntax error
The branch, master has been updated via f6336ea6805a35c5be12dcfd6db0913d1189b003 (commit) from 629c2c7cadd8e953f2c78086394c7d504d470287 (commit) - Log - commit f6336ea6805a35c5be12dcfd6db0913d1189b003 Author: Michael Niedermayer AuthorDate: Sat Mar 26 13:57:45 2016 +0100 Commit: Michael Niedermayer CommitDate: Sat Mar 26 13:57:45 2016 +0100 web: Fix html/xml syntax error Signed-off-by: Michael Niedermayer diff --git a/src/index b/src/index index c469028..ff0caf2 100644 --- a/src/index +++ b/src/index @@ -147,7 +147,7 @@ feedback or breakage reports through our https://trac.ffmpeg.org/";>bug tracker. - October 13th, 2015, Telepoint & MediaHub are now supporting our project + October 13th, 2015, Telepoint & MediaHub are now supporting our project A big thank you note goes to our newest supporters: MediaHub and Telepoint. Both companies have donated a dedicated server with free of charge internet --- Summary of changes: src/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 8d5702e web/download: update missed "3.0"
The branch, master has been updated via 8d5702e4957f29b8d390dd5a24208b516cf3c8be (commit) from becfe3335a0d056cc3ddc81b25c6d9254fb39282 (commit) - Log - commit 8d5702e4957f29b8d390dd5a24208b516cf3c8be Author: Michael Niedermayer AuthorDate: Tue Mar 29 04:39:54 2016 +0200 Commit: Michael Niedermayer CommitDate: Tue Mar 29 04:39:54 2016 +0200 web/download: update missed "3.0" diff --git a/src/download b/src/download index 8ef87fd..e3a35e0 100644 --- a/src/download +++ b/src/download @@ -270,7 +270,7 @@ - FFmpeg 3.0 "Einstein" + FFmpeg 3.0.1 "Einstein" 3.0.1 was released on 2016-03-29. It is the latest stable FFmpeg release --- Summary of changes: src/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- ___________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. becfe33 web/download: add FFmpeg 3.0.1
The branch, master has been updated via becfe3335a0d056cc3ddc81b25c6d9254fb39282 (commit) from f6336ea6805a35c5be12dcfd6db0913d1189b003 (commit) - Log - commit becfe3335a0d056cc3ddc81b25c6d9254fb39282 Author: Michael Niedermayer AuthorDate: Tue Mar 29 04:37:28 2016 +0200 Commit: Michael Niedermayer CommitDate: Tue Mar 29 04:37:28 2016 +0200 web/download: add FFmpeg 3.0.1 diff --git a/src/download b/src/download index c3d53a2..8ef87fd 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-3.0.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-3.0.1.tar.bz2"; class="btn btn-success"> Download - ffmpeg-3.0.tar.bz2 + ffmpeg-3.0.1.tar.bz2 More releases @@ -273,7 +273,7 @@ FFmpeg 3.0 "Einstein" -3.0 was released on 2016-02-15. It is the latest stable FFmpeg release +3.0.1 was released on 2016-03-29. It is the latest stable FFmpeg release from the 3.0 release branch, which was cut from master on 2016-02-14. It includes the following library versions: @@ -291,19 +291,19 @@ libpostproc54. 0.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n3.0";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n3.0.1";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/3.0";>Release Notes --- Summary of changes: src/download | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. fbe0f6f web/download: add FFmpeg 3.0.2
The branch, master has been updated via fbe0f6ffc834ee53e5ff13699f675b9022f4da23 (commit) from 8d5702e4957f29b8d390dd5a24208b516cf3c8be (commit) - Log - commit fbe0f6ffc834ee53e5ff13699f675b9022f4da23 Author: Michael Niedermayer AuthorDate: Thu Apr 28 03:44:34 2016 +0200 Commit: Michael Niedermayer CommitDate: Thu Apr 28 03:44:34 2016 +0200 web/download: add FFmpeg 3.0.2 diff --git a/src/download b/src/download index e3a35e0..746d098 100644 --- a/src/download +++ b/src/download @@ -1,10 +1,10 @@ -http://ffmpeg.org/releases/ffmpeg-3.0.1.tar.bz2"; class="btn btn-success"> +http://ffmpeg.org/releases/ffmpeg-3.0.2.tar.bz2"; class="btn btn-success"> Download - ffmpeg-3.0.1.tar.bz2 + ffmpeg-3.0.2.tar.bz2 More releases @@ -270,10 +270,10 @@ - FFmpeg 3.0.1 "Einstein" + FFmpeg 3.0.2 "Einstein" -3.0.1 was released on 2016-03-29. It is the latest stable FFmpeg release +3.0.2 was released on 2016-04-28. It is the latest stable FFmpeg release from the 3.0 release branch, which was cut from master on 2016-02-14. It includes the following library versions: @@ -291,19 +291,19 @@ libpostproc54. 0.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n3.0.1";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n3.0.2";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/3.0";>Release Notes --- Summary of changes: src/download | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 28692f9 web/download: add FFmpeg 2.8.7
The branch, master has been updated via 28692f948ff5ecf4989d6a4eeab9890c2731496c (commit) from fbe0f6ffc834ee53e5ff13699f675b9022f4da23 (commit) - Log - commit 28692f948ff5ecf4989d6a4eeab9890c2731496c Author: Michael Niedermayer AuthorDate: Fri Apr 29 14:22:06 2016 +0200 Commit: Michael Niedermayer CommitDate: Fri Apr 29 14:22:06 2016 +0200 web/download: add FFmpeg 2.8.7 diff --git a/src/download b/src/download index 746d098..f492aa3 100644 --- a/src/download +++ b/src/download @@ -309,10 +309,10 @@ libpostproc54. 0.100 - FFmpeg 2.8.6 "Feynman" + FFmpeg 2.8.7 "Feynman" -2.8.6 was released on 2016-02-01. It is the latest stable FFmpeg release +2.8.7 was released on 2016-04-29. It is the latest stable FFmpeg release from the 2.8 release branch, which was cut from master on 2015-09-05. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-08-28, libav 11 as of 2015-08-28. @@ -332,19 +332,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.6";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.8.7";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.8";>Release Notes --- Summary of changes: src/download | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. a9ad68d web/download: add 2.7.7
The branch, master has been updated via a9ad68de7dbc571a16802d888157f7b2eff5f768 (commit) from 28692f948ff5ecf4989d6a4eeab9890c2731496c (commit) - Log - commit a9ad68de7dbc571a16802d888157f7b2eff5f768 Author: Michael Niedermayer AuthorDate: Sat Apr 30 17:24:30 2016 +0200 Commit: Michael Niedermayer CommitDate: Sat Apr 30 17:24:30 2016 +0200 web/download: add 2.7.7 diff --git a/src/download b/src/download index f492aa3..d8347e1 100644 --- a/src/download +++ b/src/download @@ -350,11 +350,11 @@ libpostproc53. 3.100 - FFmpeg 2.7.6 "Nash" + FFmpeg 2.7.7 "Nash" -2.7.6 was released on 2016-02-01. It is the latest stable FFmpeg release -from the 2.7.6 release branch, which was cut from master on 2015-06-09. +2.7.7 was released on 2016-04-30. It is the latest stable FFmpeg release +from the 2.7.7 release branch, which was cut from master on 2015-06-09. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-06-10, libav 11 as of 2015-06-11. @@ -373,19 +373,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.6";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.7.7";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.7";>Release Notes --- Summary of changes: src/download | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 18c9491 web/secrity: add CVE-2016-1528
-8548, 5b2097626d0e4ccb432d7d8ab040aa8dbde9eb3a / c727401aa9d62335e89d118a5b4e202edf39d905 +CVE-2016-1528, 5b2097626d0e4ccb432d7d8ab040aa8dbde9eb3a / c727401aa9d62335e89d118a5b4e202edf39d905 CVE-2014-9316, 30e8a375901f8802853fd6d478b77a127d208bd6 / 0eecf40935b22644e6cd74c586057237ecfd6844 CVE-2014-9317, cb1db92cca98f963e91f421ee0c84f8866325a73 / 79ceaf827be0b070675d4cd0a55c3386542defd8 CVE-2014-9603, fac6f744d8170585f05e098ce9c9f27eeffa818e / 3030fb7e0d41836f8add6399e9a7c7b740b48bfd @@ -1589,4 +1597,5 @@ Fixes following vulnerabilities: CVE-2008-4610 00bbe27631ddce543e00d5fbdee445c39fc84d7f CVE-2008-4867 4df7beb3686caf2df345d2e10564aa8cf6c24a65 CVE-2009-0385 0838cfdc8a10185604db5cd9d6bffad71279a0e8 +CVE-2016-1528 d99fbbf4d7e3f6abea0d052849a515730f552608 (partial, see c727401aa9d62335e89d118a5b4e202edf39d905) --- Summary of changes: src/security | 9 + 1 file changed, 9 insertions(+) hooks/post-receive -- ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 18f851b web/download: Change fateserver & ffmpeg-web git URLs to https
The branch, master has been updated via 18f851b482ecb0269f054ff8b5cfc4b134429192 (commit) from 18c94915c53887ae355af3adb721e2616af9abbd (commit) - Log - commit 18f851b482ecb0269f054ff8b5cfc4b134429192 Author: Michael Niedermayer AuthorDate: Mon May 2 02:22:18 2016 +0200 Commit: Michael Niedermayer CommitDate: Mon May 2 02:33:20 2016 +0200 web/download: Change fateserver & ffmpeg-web git URLs to https Signed-off-by: Michael Niedermayer diff --git a/src/css_credit b/src/css_credit index 27efb02..82466b6 100644 --- a/src/css_credit +++ b/src/css_credit @@ -1,6 +1,6 @@ /* * This file has been generated from the website repo: - * git://ffmpeg.org/ffmpeg-web + * https://git.ffmpeg.org/ffmpeg-web * Any modification must be applied on the src/less/style.less source file first. */ diff --git a/src/download b/src/download index d8347e1..47bee8f 100644 --- a/src/download +++ b/src/download @@ -202,11 +202,11 @@ Main FFmpeg Git repository - git://ffmpeg.org/ffmpeg-web + https://git.ffmpeg.org/ffmpeg-web";>https://git.ffmpeg.org/ffmpeg-web Main ffmpeg.org website repository - git://git.ffmpeg.org/fateserver + https://git.ffmpeg.org/fateserver";>https://git.ffmpeg.org/fateserver http://fate.ffmpeg.org";>fate.ffmpeg.org server software repository --- Summary of changes: src/css_credit | 2 +- src/download | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- _______ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] [ffmpeg-web] branch master updated. 9bbddd4 web/download: add FFmpeg 2.6.9
The branch, master has been updated via 9bbddd44cb8ec4a921c16660c266ea84478cb499 (commit) from 18f851b482ecb0269f054ff8b5cfc4b134429192 (commit) - Log - commit 9bbddd44cb8ec4a921c16660c266ea84478cb499 Author: Michael Niedermayer AuthorDate: Tue May 3 04:20:46 2016 +0200 Commit: Michael Niedermayer CommitDate: Tue May 3 04:20:46 2016 +0200 web/download: add FFmpeg 2.6.9 diff --git a/src/download b/src/download index 47bee8f..4e8f7fa 100644 --- a/src/download +++ b/src/download @@ -391,10 +391,10 @@ libpostproc53. 3.100 - FFmpeg 2.6.8 "Grothendieck" + FFmpeg 2.6.9 "Grothendieck" -2.6.8 was released on 2016-02-01. It is the latest stable FFmpeg release +2.6.9 was released on 2016-05-03. It is the latest stable FFmpeg release from the 2.6 release branch, which was cut from master on 2015-03-06. Amongst lots of other changes, it includes all changes from ffmpeg-mt, libav master of 2015-03-06, libav 11 as of 2015-03-06. @@ -414,19 +414,19 @@ libpostproc53. 3.100 - Download xz tarball - PGP signature + Download xz tarball + PGP signature - Download bzip2 tarball - PGP signature + Download bzip2 tarball + PGP signature - Download gzip tarball - PGP signature + Download gzip tarball + PGP signature - http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.8";>Changelog + http://git.videolan.org/?p=ffmpeg.git;a=shortlog;h=n2.6.9";>Changelog http://git.videolan.org/?p=ffmpeg.git;a=blob;f=RELEASE_NOTES;hb=release/2.6";>Release Notes --- Summary of changes: src/download | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) hooks/post-receive -- _______________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog