# private_journey **Repository Path**: flameh/private_journey ## Basic Information - **Project Name**: private_journey - **Description**: No description available - **Primary Language**: Dart - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-10 - **Last Updated**: 2025-06-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # private_journey A new Flutter project. ## Getting Started 项目中使用了media-kit插件,需要在pubspec.yaml文件中添加以下依赖: ```yaml dependencies: media_kit: ^1.2.0 media_kit_libs_audio: ^1.0.6 ``` 其中media-kit-lib-windows依赖mpv库,需要在项目中添加mpv库的依赖。 如果github无法访问,可以网页访问https://github.com/shinchiro/mpv-winbuild-cmake/releases 找到对应的release包,下载后获取这个文件的md5值,在项目中添加以下依赖: 在这个插件的CmakeLists.txt文件中更改以下的代码: ```text set(LIBMPV "mpv-dev-x86_64-20230924-git-652a1dd.7z") set(LIBMPV_URL "https://github.com/media-kit/libmpv-win32-audio-build/releases/download/2023-09-24/${LIBMPV}") set(LIBMPV_MD5 "6c25a3a4f5fe31449e67f8fd1c5806e3") ``` 然后把对应的md5与实际的md5值替换掉,文件名与实际的文件名替换掉。 最后需要把文件放到build/windows/x64下即可 For help getting started with Flutter development, view the [online documentation](https://docs.flutter.dev/), which offers tutorials, samples, guidance on mobile development, and a full API reference.