Add script to verify ffmpeg without proprietary codecs
This commit is contained in:
parent
740de02d6c
commit
6b8f840da0
3 changed files with 112 additions and 0 deletions
|
@ -91,6 +91,7 @@ def main():
|
||||||
run_script('build.py', ['-c', 'D'])
|
run_script('build.py', ['-c', 'D'])
|
||||||
if PLATFORM == 'win32' or target_arch == 'x64':
|
if PLATFORM == 'win32' or target_arch == 'x64':
|
||||||
run_script('test.py', ['--ci'])
|
run_script('test.py', ['--ci'])
|
||||||
|
run_script('verify-ffmpeg.py')
|
||||||
|
|
||||||
|
|
||||||
def run_script(script, args=[]):
|
def run_script(script, args=[]):
|
||||||
|
|
75
script/verify-ffmpeg.py
Executable file
75
script/verify-ffmpeg.py
Executable file
|
@ -0,0 +1,75 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from lib.util import electron_gyp, rm_rf
|
||||||
|
|
||||||
|
|
||||||
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||||
|
FFMPEG_LIBCC_PATH = os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor',
|
||||||
|
'download', 'libchromiumcontent', 'ffmpeg')
|
||||||
|
|
||||||
|
PROJECT_NAME = electron_gyp()['project_name%']
|
||||||
|
PRODUCT_NAME = electron_gyp()['product_name%']
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
os.chdir(SOURCE_ROOT)
|
||||||
|
|
||||||
|
if len(sys.argv) == 2 and sys.argv[1] == '-R':
|
||||||
|
config = 'R'
|
||||||
|
else:
|
||||||
|
config = 'D'
|
||||||
|
|
||||||
|
app_path = create_app_copy(config)
|
||||||
|
|
||||||
|
if sys.platform == 'darwin':
|
||||||
|
electron = os.path.join(app_path, 'Contents', 'MacOS', PRODUCT_NAME)
|
||||||
|
ffmpeg_name = 'libffmpeg.dylib'
|
||||||
|
ffmpeg_app_path = os.path.join(app_path, 'Contents', 'Frameworks',
|
||||||
|
'{0} Framework.framework'.format(PROJECT_NAME),
|
||||||
|
'Libraries')
|
||||||
|
elif sys.platform == 'win32':
|
||||||
|
electron = os.path.join(app_path, '{0}.exe'.format(PROJECT_NAME))
|
||||||
|
ffmpeg_app_path = app_path
|
||||||
|
ffmpeg_name = 'libffmpeg.dll'
|
||||||
|
else:
|
||||||
|
electron = os.path.join(app_path, PROJECT_NAME)
|
||||||
|
ffmpeg_app_path = app_path
|
||||||
|
ffmpeg_name = 'libffmpeg.so'
|
||||||
|
|
||||||
|
# Copy ffmpeg without proprietary codecs into app
|
||||||
|
shutil.copy(os.path.join(FFMPEG_LIBCC_PATH, ffmpeg_name), ffmpeg_app_path)
|
||||||
|
|
||||||
|
returncode = 0
|
||||||
|
try:
|
||||||
|
test_path = os.path.join('spec', 'fixtures', 'no-proprietary-codecs.js')
|
||||||
|
subprocess.check_call([electron, test_path] + sys.argv[1:])
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
returncode = e.returncode
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
returncode = 0
|
||||||
|
|
||||||
|
return returncode
|
||||||
|
|
||||||
|
|
||||||
|
# Create copy of app to install ffmpeg library without proprietary codecs into
|
||||||
|
def create_app_copy(config):
|
||||||
|
initial_app_path = os.path.join(SOURCE_ROOT, 'out', config)
|
||||||
|
app_path = os.path.join(SOURCE_ROOT, 'out', config + '-no-proprietary-codecs')
|
||||||
|
|
||||||
|
if sys.platform == 'darwin':
|
||||||
|
app_name = '{0}.app'.format(PRODUCT_NAME)
|
||||||
|
initial_app_path = os.path.join(initial_app_path, app_name)
|
||||||
|
app_path = os.path.join(app_path, app_name)
|
||||||
|
|
||||||
|
rm_rf(app_path)
|
||||||
|
shutil.copytree(initial_app_path, app_path, symlinks=True)
|
||||||
|
return app_path
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.exit(main())
|
36
spec/fixtures/no-proprietary-codecs.js
vendored
Normal file
36
spec/fixtures/no-proprietary-codecs.js
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
const {app, BrowserWindow, ipcMain} = require('electron')
|
||||||
|
const path = require('path')
|
||||||
|
const url = require('url')
|
||||||
|
|
||||||
|
const MEDIA_ERR_SRC_NOT_SUPPORTED = 4
|
||||||
|
|
||||||
|
let window
|
||||||
|
|
||||||
|
app.once('ready', () => {
|
||||||
|
window = new BrowserWindow({
|
||||||
|
show: false
|
||||||
|
})
|
||||||
|
|
||||||
|
window.loadURL(url.format({
|
||||||
|
protocol: 'file',
|
||||||
|
slashed: true,
|
||||||
|
pathname: path.resolve(__dirname, 'asar', 'video.asar', 'index.html')
|
||||||
|
}))
|
||||||
|
|
||||||
|
ipcMain.on('asar-video', function (event, message, error) {
|
||||||
|
if (message === 'ended') {
|
||||||
|
console.log('Video played, proprietary codecs are included')
|
||||||
|
app.exit(1)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (message === 'error' && error === MEDIA_ERR_SRC_NOT_SUPPORTED) {
|
||||||
|
console.log('Video format not supported, proprietary codecs are not included')
|
||||||
|
app.exit(0)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(`Unexpected error: ${error}`)
|
||||||
|
app.exit(1)
|
||||||
|
})
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue