# conver **Repository Path**: ZimH/conver ## Basic Information - **Project Name**: conver - **Description**: mp4转mp3 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-14 - **Last Updated**: 2022-01-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### mp4转为mp3 小工具: #### 1. 项目说明: 本项目使用java8-javaFX图形化界面开发,可编译打包为exe、msi安装文件,以便在没有jdk环境的windows系统上运行。 #### 2. 使用说明: * 1.代码使用直接运行。 * 2.编译打包(exe,msi): 使用 javafx-maven-plugin 打包插件进行安装包生成,在pom.xml中: ``` com.zenjava javafx-maven-plugin 8.6.0 启动类路径 组织名称 true ${basedir}/src/main/deploy/ true true true create-jfxjar package build-jar create-native package build-native ``` 1).打包exe需要用到Inno Setup 5(exe编译器)下载地址:https://files.jrsoftware.org/is/5/innosetup-5.5.9-unicode.exe 官网:https://jrsoftware.org/isinfo.php 建议安装到(默认安装) C:\Program Files (x86)\Inno Setup 5 有网友说5以上的版本会失败,所以推荐用5-unicode,我用的是5.5.9-unicode 安装成功后,配置环境变量,Start --> Computer -->System Properties --> Advanced System Properties --> Environment Variables then choose System Variables, Path, and then Edit. Enter the following to add Inno Setup 5 to the Path: C:\Program Files (x86)\Inno Setup 5; 2).打包mis需要用到 官网下载地址:https://wixtoolset.org/releases/ 我安装的是wix311版本 同样默认安装到C盘 配置环境变量,Start --> Computer -->System Properties --> Advanced System Properties --> Environment Variables then choose System Variables, Path, and then Edit. Enter the following to add Inno Setup 5 to the Path: C:\Program Files (x86)\WiX Toolset v3.10\bin; 参考博客:https://blog.csdn.net/ZhangYu971014/article/details/107079506/ 参考博客:https://blog.csdn.net/qq_27503061/article/details/90612455 linux桌面版暂无