2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.toolchain import Recipe
|
|
|
|
|
|
|
|
|
|
|
|
class FFPyPlayerCodecsRecipe(Recipe):
|
2022-12-02 21:15:34 +01:00
|
|
|
depends = ['libx264', 'libshine', 'libvpx']
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
def build_arch(self, arch):
|
|
|
|
pass
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
recipe = FFPyPlayerCodecsRecipe()
|