Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/public-pets-go.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"react-native-youtube-bridge": patch
---

fix: resolve broken links in README files
6 changes: 3 additions & 3 deletions packages/react-native-youtube-bridge/README-ko_kr.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ React Native에서 YouTube 플레이어를 사용하려면 복잡한 설정이
- [Expo Go](https://snack.expo.dev/@harang/react-native-youtube-bridge)

<p align="center">
<img src="../../assets/example.gif" width="600" />
<img src="https://raw.githubusercontent.com/react-native-bridges/react-native-youtube-bridge/main/assets/example.gif" width="600" />
</p>

## 설치
Expand Down Expand Up @@ -241,7 +241,7 @@ YouTube 플레이어 렌더링 방식을 제어하고 호환성을 위한 소스
1. **인라인 HTML 모드** (`useInlineHtml: true`)는 앱 내에서 직접 HTML을 로드하여 플레이어를 렌더링합니다. (default)
2. **웹뷰 모드** (`useInlineHtml: false`)는 외부 플레이어 페이지를 로드합니다.
- 기본 URI는 https://react-native-youtube-bridge.pages.dev 입니다.
- 직접 제작한 커스텀 플레이어 페이지를 외부 웹뷰로 사용하려면, `@react-native-youtube-bridge/web`으로 플레이어를 구축한 후 `webViewUrl`에 해당 URL을 설정하세요. 자세한 구현 방법은 [웹 플레이어 가이드](../web/)를 참고해 주세요.
- 직접 제작한 커스텀 플레이어 페이지를 외부 웹뷰로 사용하려면, `@react-native-youtube-bridge/web`으로 플레이어를 구축한 후 `webViewUrl`에 해당 URL을 설정하세요. 자세한 구현 방법은 [웹 플레이어 가이드](https://github.com/react-native-bridges/react-native-youtube-bridge/tree/main/packages/web)를 참고해 주세요.

> [!NOTE]
> **webViewUrl 활용법**
Expand Down Expand Up @@ -280,7 +280,7 @@ function CustomPlayerPage() {
export default CustomPlayerPage;
```

> 자세한 내용은 [웹 플레이어 가이드](../web/)를 참고해 주세요.
> 자세한 내용은 [웹 플레이어 가이드](https://github.com/react-native-bridges/react-native-youtube-bridge/tree/main/packages/web)를 참고해 주세요.

### YouTube oEmbed API
`useYoutubeOEmbed` 훅을 통해 YouTube 비디오의 메타데이터를 가져올 수 있습니다.
Expand Down
6 changes: 3 additions & 3 deletions packages/react-native-youtube-bridge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ However, there are currently no actively maintained YouTube player libraries for
- [Expo Go](https://snack.expo.dev/@harang/react-native-youtube-bridge)

<p align="center">
<img src="../../assets/example.gif" width="600" />
<img src="https://raw.githubusercontent.com/react-native-bridges/react-native-youtube-bridge/main/assets/example.gif" width="600" />
</p>

## Installation
Expand Down Expand Up @@ -241,7 +241,7 @@ Control YouTube player rendering method and configure source URLs for compatibil
1. **Inline HTML Mode** (`useInlineHtml: true`) renders the player by loading HTML directly within the app. (default)
2. **WebView Mode** (`useInlineHtml: false`) loads an external player page.
- The default URI is https://react-native-youtube-bridge.pages.dev.
- To use your own custom player page as an external WebView, build your player with `@react-native-youtube-bridge/web` and set the URL in the `webViewUrl` property. For detailed implementation instructions, please refer to the [Web Player Guide](../web/).
- To use your own custom player page as an external WebView, build your player with `@react-native-youtube-bridge/web` and set the URL in the `webViewUrl` property. For detailed implementation instructions, please refer to the [Web Player Guide](https://github.com/react-native-bridges/react-native-youtube-bridge/tree/main/packages/web).

> [!NOTE]
> **webViewUrl Usage**
Expand Down Expand Up @@ -280,7 +280,7 @@ function CustomPlayerPage() {
export default CustomPlayerPage;
```

> For more details, please refer to the [Web Player Guide](../web/).
> For more details, please refer to the [Web Player Guide](https://github.com/react-native-bridges/react-native-youtube-bridge/tree/main/packages/web).

### YouTube oEmbed API
Use the `useYoutubeOEmbed` hook to fetch YouTube video metadata.
Expand Down