react-native-youtube-iframe
Version:
A simple wrapper around the youtube iframe js API for react native
20 lines (17 loc) • 479 B
JavaScript
export const PLAYER_STATES = {
'-1': 'unstarted',
'0': 'ended',
'1': 'playing',
'2': 'paused',
'3': 'buffering',
'5': 'video cued',
};
export const PLAYER_ERROR = {
'2': 'invalid_parameter',
'5': 'HTML5_error',
'100': 'video_not_found',
'101': 'embed_not_allowed',
'150': 'embed_not_allowed',
};
export const CUSTOM_USER_AGENT =
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36';