#reactjs #react-native
#reactjs #react-native
Вопрос:
Извините за заголовок, я слаб по-английски
Я пытаюсь использовать видеоплеер, и у меня возникла эта проблема, пожалуйста, помогите мне.
Ошибка:
Error: , Encountered a fatal error during playback: d.g.b.d.t0.x$d: Response code: 403, Fatal, Object {}
- node_modulesreact-nativeLibrariesLogBoxLogBox.js:148:8 in registerError
- node_modulesreact-nativeLibrariesLogBoxLogBox.js:59:8 in errorImpl
- node_modulesreact-nativeLibrariesLogBoxLogBox.js:33:4 in console.error
- node_modulesexpobuildenvironmentreact-native-logs.fx.js:27:4 in error
- node_modulesexpo-video-playerdistindex.js:69:19 in defaultProps.errorCallback
- node_modulesexpo-video-playerdistindex.js:161:25 in updatePlaybackCallback
- node_modulesexpo-avbuildVideo.js:57:31 in _handleNewStatus
* http://192.168.1.5:19001/node_modulesexpoAppEntry.bundle?platform=androidamp;dev=trueamp;minify=falseamp;hot=false:130299:32 in _nativeOnError
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:265:4 in invokeGuardedCallbackImpl
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:476:2 in invokeGuardedCallback
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:500:2 in invokeGuardedCallbackAndCatchFirstError
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:597:41 in executeDispatch
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:621:19 in executeDispatchesInOrder
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:2521:28 in executeDispatchesAndRelease
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:838:4 in forEachAccumulated
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:2546:20 in runEventsInBatch
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:2702:18 in runExtractedPluginEventsInBatch
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:2639:35 in batchedUpdates$argument_0
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:17712:13 in batchedUpdates$1
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:2492:29 in batchedUpdates
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:2638:16 in _receiveRootNodeIDEvent
- node_modulesreact-nativeLibrariesRendererimplementationsReactNativeRenderer-dev.js:2713:25 in receiveEvent
- node_modulesreact-nativeLibrariesBatchedBridgeMessageQueue.js:416:4 in __callFunction
- node_modulesreact-nativeLibrariesBatchedBridgeMessageQueue.js:109:6 in __guard$argument_0
- node_modulesreact-nativeLibrariesBatchedBridgeMessageQueue.js:364:10 in __guard
- node_modulesreact-nativeLibrariesBatchedBridgeMessageQueue.js:108:4 in callFunctionReturnFlushedQueue
* [native code]:null in callFunctionReturnFlushedQueue
и это мой код :
import { ScrollView, StyleSheet } from 'react-native';
import { Video } from 'expo-av';
import React from 'react';
import VideoPlayer from 'expo-video-player';
const App = () => (
<ScrollView style={styles.container} contentContainerStyle={styles.contentContainer}>
<VideoPlayer
videoProps={{
shouldPlay: true,
resizeMode: Video.RESIZE_MODE_CONTAIN,
source: {
uri: 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4',
},
}}
inFullscreen={true}
videoBackground='transparent'
height={220}
/>
</ScrollView>
)
const styles = StyleSheet.create({
container: {
backgroundColor: '#FFF',
flex: 1,
},
contentContainer: {
alignItems: 'center',
justifyContent: 'center',
},
})
export default App
Я перепробовал все, но не получил результатов
Я также видел аналогичную проблему, но они не для react native
Я был вовлечен в эту проблему в течение недели. Пожалуйста, направьте меня
Комментарии:
1. Пожалуйста, опубликуйте ошибку в виде текста вместо скриншота, чтобы было легче ответить на ваш вопрос.
2. @MikayelSaghyan пожалуйста, помогите мне
3. Попробуйте удалить
VideoPlayer
и запустить код, чтобы узнать, связана ли проблема с ним. Если это withVideoPlayer
, попробуйте добавитьdebug={true}
к нему, и это может дать лучший результат в отношении ошибки.