Skip to content

Commit 370a8b7

Browse files
committed
Update ffmpeg and deps versions.
1 parent d3498dd commit 370a8b7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pythonforandroid/recipes/ffmpeg/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99

1010
class FFMpegRecipe(Recipe):
11-
version = '2.8.8'
11+
version = '3.1.8' # 3.2+ works with bugs
1212
url = 'http://ffmpeg.org/releases/ffmpeg-{version}.tar.bz2'
13-
md5sum = 'afeae3b80b7e7e03db957f33a7ef20d2'
14-
depends = ['sdl2'] # Actually no, but we need this to build correct recipe order
13+
md5sum = 'f25a0cdd7f731cfbd8c0f7842b0d15b9'
14+
depends = ['sdl2'] # Need this to build correct recipe order
1515
opts_depends = ['openssl', 'ffpyplayer_codecs']
1616
patches = ['patches/fix-libshine-configure.patch']
1717

pythonforandroid/recipes/libshine/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77

88
class LibShineRecipe(Recipe):
9-
version = 'b403b3e8a41377e0576d834b179a5cc7096ff548' # we need master branch
9+
version = '20aee967f67abefd065c196eec7ce21adbbe1549'
1010
url = 'https://github.com/toots/shine/archive/{version}.zip'
11-
md5sum = '24cf9488d06f7acf0a0fbb162cc587ab'
11+
md5sum = 'bbf1f657e6adccb5e79f59da9ecfac2d'
1212

1313
def should_build(self, arch):
1414
build_dir = self.get_build_dir(arch.arch)

pythonforandroid/recipes/libx264/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77

88
class LibX264Recipe(Recipe):
9-
version = 'x264-snapshot-20161210-2245-stable' # using mirror url since can't use ftp
9+
version = 'x264-snapshot-20170608-2245-stable' # using mirror url since can't use ftp
1010
url = 'http://mirror.yandex.ru/mirrors/ftp.videolan.org/x264/snapshots/{version}.tar.bz2'
11-
md5sum = '6bcca94ae1d81ee14236ba9af42135d9'
11+
md5sum = 'adf3b87f759b5cc9f100f8cf99276f77'
1212

1313
def should_build(self, arch):
1414
build_dir = self.get_build_dir(arch.arch)

0 commit comments

Comments
 (0)