diff --git a/examples/get_detect_data.py b/examples/get_detect_data.py index 1dd724c..6686705 100755 --- a/examples/get_detect_data.py +++ b/examples/get_detect_data.py @@ -9,6 +9,10 @@ import json import requests import pandas +PLATFORM_TO_PY = { + 'Apple': 'Darwin', +} + HWACCELINTRO_URL = 'https://trac.ffmpeg.org/wiki/HWAccelIntro' API_TO_HWACCEL = { 'AMF': 'amf', @@ -26,9 +30,6 @@ API_TO_HWACCEL = { 'VDPAU': 'vdpau', 'VideoToolbox': 'videotoolbox', } -PLATFORM_TO_PY = { - 'Apple': 'Darwin', -}