此项目需求是针对.wav格式音频进行操作,转换成相应的.mp3格式的音频文件,对音频进行切割,最后以需求的形式输出,此篇会回顾运用到的一些知识点。
1.MDI子窗口的建立:
首先一个窗体能够创建多个MDI窗体,应当将IsMDIContainer属性设为true;以下为效果图:
控制窗体切换的是一个DotNetBar.TabStrip控件,style属性为Office2007Document,TabLayOutType:FixedWithNavigationBox
创建窗体的代码如下:
09 |
public static Form MainForm { get ; set ; } |
15 |
<typeparam name= "T" > 窗口类型 |
17 |
public static void CreateChildWindow |
18 |
<t> () where T : Form, new () |
19 |
// where 子句还可以包括构造函数约束。 可以使用 new 运算符创建类型参数的实例;但类型参数为此必须受构造函数约束 |
20 |
// new() 的约束。 new() 约束可以让编译器知道:提供的任何类型参数都必须具有可访问的无参数(或默认)构造函数。 |
24 |
var childForms = MainForm.MdiChildren; |
26 |
foreach (Form f in childForms) |
40 |
form.Icon = System.Drawing.Icon.FromHandle(Properties.Resources.MainIcon.GetHicon()); |
42 |
form.MdiParent = MainForm; |
44 |
form.FormBorderStyle = FormBorderStyle.FixedToolWindow; |
47 |
form.WindowState = FormWindowState.Maximized; |
前台点击按钮调用代码:CreateMDIWindow.CreateChildWindow (); <>里为窗体的名称。
2.序列化与反序列化:
当一个系统你有默认的工作目录,默认的文件保存路径,且这些数据时唯一的,你希望每次打开软件都会显示这些数据,也可以更新这些数据,可以使用序列化与反序列化。
我们以项目存储根目录和选择项目为例:
代码如下:
02 |
public class UserSetting |
07 |
private string FilePath{ get { return Path.Combine(Environment.CurrentDirectory, "User.data" ); } } |
12 |
public string AudioResourceFolder { get ; set ; } |
17 |
public string Solution { get ; set ; } |
24 |
if (!File.Exists(FilePath)) |
26 |
FileStream fs = File.Create(FilePath); |
27 |
fs.Close(); //不关闭文件流,首次创建该文件后不能被使用买现成会被占用 |
34 |
public UserSetting ReadUserSetting() |
36 |
using (FileStream fs = new FileStream(FilePath, FileMode.Open,FileAccess.Read)) |
41 |
SoapFormatter sf = new SoapFormatter(); |
42 |
ob = sf.Deserialize(fs); |
44 |
return ob as UserSetting; |
51 |
public void SaveUserSetting( object obj) |
53 |
using (FileStream fs = new FileStream(FilePath, FileMode.OpenOrCreate, FileAccess.Write)) |
55 |
SoapFormatter sf = new SoapFormatter(); |
3.Datagridview动态生成:
根据设置的楼层生成相应楼层带button按钮的datagridview,并且每层按钮为每层选定选择音乐,代码如下:
04 |
private void BindData( int elevatorLow, int number) |
08 |
DataTable list = new DataTable(); |
10 |
list.Columns.Add( new DataColumn( "name" , typeof ( string ))); |
11 |
list.Columns.Add( new DataColumn( "musicPath" , typeof ( string ))); |
12 |
for ( int i =0; i < number; i++) |
17 |
list.Rows.Add(list.NewRow()); |
18 |
list.Rows[i][0] = elevatorLow; |
23 |
dataGridViewX1.DataSource = list; |
26 |
{ MessageBox.Show(ex.ToString()); } |
选择音乐按钮事件:
01 |
private void dataGridViewX1_CellContentClick( object sender, DataGridViewCellEventArgs e) |
08 |
DataGridViewColumn column = dataGridViewX1.Columns[e.ColumnIndex]; |
09 |
if (column is DataGridViewButtonColumn) |
11 |
OpenFileDialog openMusic = new OpenFileDialog(); |
12 |
openMusic.AddExtension = true ; |
13 |
openMusic.Multiselect = true ; |
14 |
openMusic.Filter = "MP3文件(*.mp3)|*mp3" ; |
15 |
if (openMusic.ShowDialog() == DialogResult.OK) |
17 |
dataGridViewX1.Rows[e.RowIndex].Cells[2].Value = Path.GetFileName(openMusic.FileName); |
23 |
{ MessageBox.Show(ex.ToString()); } |
4.获得音乐文件属性:
使用Shellclass获得文件属性可以参考 点击打开链接
代码如下:
04 |
/// <param name="filePath">文件的完整路径 |
05 |
public static string [] GetMP3Time( string filePath) |
07 |
string dirName = Path.GetDirectoryName(filePath); |
08 |
string SongName = Path.GetFileName(filePath); //获得歌曲名称 |
09 |
ShellClass sh = new ShellClass(); |
10 |
Folder dir = sh.NameSpace(dirName); |
11 |
FolderItem item = dir.ParseName(SongName); |
12 |
string SongTime = dir.GetDetailsOf(item, 27); //27为获得歌曲持续时间 ,28为获得音乐速率,1为获得音乐文件大小 |
13 |
string [] time = Regex.Split(SongTime, ":" ); |
5.音频操作:
音频的操作用的fmpeg.exe ,下载地址
fmpeg放在bin目录下,代码如下:
04 |
/// <param name="exe">ffmpeg程序 |
05 |
/// <param name="arg">执行参数 |
06 |
public static void ExcuteProcess( string exe, string arg) |
08 |
using (var p = new Process()) |
10 |
p.StartInfo.FileName = exe; |
11 |
p.StartInfo.Arguments = arg; |
12 |
p.StartInfo.UseShellExecute = false ; //输出信息重定向 |
13 |
p.StartInfo.CreateNoWindow = true ; |
14 |
p.StartInfo.RedirectStandardError = true ; |
15 |
p.StartInfo.RedirectStandardOutput = true ; |
17 |
p.BeginOutputReadLine(); |
18 |
p.BeginErrorReadLine(); |
19 |
p.WaitForExit(); //等待进程结束 |
音频转换的代码如下:
01 |
private void btnConvert_Click( object sender, EventArgs e) |
04 |
if (txtMp3Music.Text != "" ) |
06 |
string fromMusic = Statics.Setting.AudioResourceFolder + "\\" + Statics.Setting.Solution+ "\\" + cobFolders.Text + "\\" + txtMusic.Text; //转换音乐路径 |
07 |
string toMusic = Statics.Setting.AudioResourceFolder + "\\" + Statics.Setting.Solution+ "\\" + cobFolders.Text + "\\" + txtMp3Music.Text; //转换后音乐路径 |
08 |
int bitrate = Convert.ToInt32(cobBitRate.Text) * 1000; //恒定码率 |
09 |
string Hz = cobHz.Text; //采样频率 |
13 |
MP3Convertion.ExcuteProcess( "ffmpeg.exe" , "-y -ab " + bitrate + " -ar " + Hz + " -i \"" + fromMusic + "\" \"" + toMusic + "\"" ); |
14 |
if (cbRetain.Checked == false ) |
16 |
File.Delete(fromMusic); |
21 |
foreach (ListViewItem lt in listMusics.Items) |
23 |
if (lt.Text == txtMusic.Text) |
25 |
listMusics.Items.Remove(lt); |
31 |
MessageBox.Show( "转换完成" ); |
33 |
txtMp3Music.Text = "" ; |
36 |
{ MessageBox.Show(ex.ToString()); } |
40 |
MessageBox.Show( "请选择你要转换的音乐" ); |
音频切割的代码如下:
01 |
private void btnCut_Click( object sender, EventArgs e) |
03 |
SaveFileDialog saveMusic = new SaveFileDialog(); |
04 |
saveMusic.Title = "选择音乐文件存放的位置" ; |
05 |
saveMusic.DefaultExt = ".mp3" ; |
06 |
saveMusic.InitialDirectory = Statics.Setting.AudioResourceFolder + "\\" + Statics.Setting.Solution+ "\\" + cobFolders.Text; |
07 |
string fromPath = Statics.Setting.AudioResourceFolder + "\\" + Statics.Setting.Solution + "\\" + cobFolders.Text + "\\" + txtMusic.Text; //要切割音乐的物理路径 |
08 |
string startTime = string .Format( "0:{0}:{1}" , txtBeginM.Text, txtBeginS.Text).Trim(); //歌曲起始时间 |
09 |
int duration = (Convert.ToInt32( this .txtEndM.Text) * 60 + Convert.ToInt32( this .txtEndS.Text)) - (Convert.ToInt32( this .txtBeginM.Text) * 60 + Convert.ToInt32( this .txtBeginS.Text)); |
10 |
string endTime = string .Format( "0:{0}:{1}" , duration / 60, duration % 60); //endTime是持续的时间,不是歌曲结束的时间 |
11 |
if (saveMusic.ShowDialog() == DialogResult.OK) |
13 |
string savePath = saveMusic.FileName; //切割后音乐保存的物理路径 |
16 |
MP3Convertion.ExcuteProcess( "ffmpeg.exe" , "-y -i \"" + fromPath + "\" -ss " + startTime + " -t " + endTime + " -acodec copy \"" + savePath+ "\"" ); //-acodec copy表示歌曲的码率和采样频率均与前者相同 |
17 |
MessageBox.Show( "已切割完成" ); |
21 |
MessageBox.Show(ex.ToString()); |
切割音频操作系统的知识点就总结道这了,就是fmpeg的应用。
- EasyDarwin开源音频解码项目EasyAudioDecoder:EasyPlayer Android音频解码库(第二部分,封装解码器接口)
上一节我们讲了如何基于ffmpeg-Android工程编译安卓上的支持音频的ffmpeg静态库:http://blog.csdn.net/xiejiashu/article/details/52524 ...
- EasyDarwin开源音频解码项目EasyAudioDecoder:基于ffmpeg的安卓音频(AAC、G726)解码库(第一部分,ffmpeg-android的编译)
ffmpeg是一套开源的,完整的流媒体解决方案.基于它可以很轻松构建一些强大的应用程序.对于流媒体这个行业,ffmpeg就像圣经一样的存在.为了表达敬意,在这里把ffmpeg官网的一段简介搬过来,ff ...
- Ucan23操作系统项目地址
期间耽误了近半年的时间.在昨天最终完毕了Ucan23OS, 项目托管在GitHub上,地址为: https://github.com/howardking/UCAN23OS 以下为操作系统的执行截图 ...
- 操作系统项目:向Linux内核添加一个系统调用
内容: 向Linux增加一个系统调用 撰写一个应用测试程序调用该系统调用 使用ptrace或类似的工具对该测试程序进行跟踪调 环境: 1.vmware workstation 15.0.0 2.ubu ...
- 我发起了一个 操作系统 GUI 和 Tcp / IP 包 的 开源项目 DeviceOS
操作系统 如果 不需要 处理 复杂多样 的 硬件 兼容性, 其实 并不算 大项目, 可以算 毕业设计 . 但是, GUI 和 Tcp / IP 这两个 部分 的 实现逻辑 很多 很复杂, 这 2 ...
- 物联网操作系统HelloX V1.79发布公告
经过HelloX开发团队近半年的努力,在HelloX V1.78版本基础上,增加许多功能特性,并对V1.78版本的一些特性进行了进一步优化之后,正式形成HelloX V1.79测试版本.经相对充分的测 ...
- Cookiecutter: 更好的项目模板工具:(1)简介及可用资源汇总
原文档地址:https://cookiecutter.readthedocs.io/en/latest/ 本系列只介绍cookiecutter的基础使用,而且会删除与功能使用无关的部分.深度使用及了解 ...
- EasyDarwin开源流媒体项目
本文转自EasyDarwin CSDN官方博客:http://blog.csdn.net/easydarwin EasyDarwin是由国内开源流媒体团队维护和迭代的一整套开源流媒体视频平台框架,从2 ...
- [转帖](整理)GNU Hurd项目详解
(整理)GNU Hurd项目详解 http://www.ha97.com/3188.html 发表于: 开源世界 | 作者: 博客教主 标签: GNU,Hurd,详解,项目 Hurd原本是要成为GNU ...
随机推荐
- IDEA导入eclipse项目并部署运行完整步骤(转发)
首先说明一下:idea里的project相当于eclipse里的workspace,而idea里的modules相当于eclipse里的project 1.File-->Import Proje ...
- Java 中的三大特性
我们都知道 Java 中有三大特性,那就是继承 ,封装和多态 .那我今天我就来说说这几个特性 . 老样子 ,先问问自己为什么会存在这些特性 .首先说封装 ,封装就是使用权限修饰符来实现对属性的隐藏 , ...
- Java 集合Collection——初学者参考,高手慎入(未完待续)
1.集合简介和例子 Collection,集合.和数学定义中的集合类似,把很多元素放在一个容器中,方便我们存放结果/查找等操作. Collection集合实际上是很多形式集合的一个抽象. 例如十九大就 ...
- 使用DNSPod域名解析
1 在GoDaddy域名注册商 注册域名 https://sg.godaddy.com/zh/ 2 登陆DNSPod https://www.dnspod.cn 3 选择域名解析 添加域名 4 添加记 ...
- 支撑大规模公有云的Kubernetes改进与优化 (1)
Kubernetes是设计用来实施私有容器云的,然而容器作为公有云,同样需要一个管理平台,在Swarm,Mesos,Kubernetes中,基于Kubernetes已经逐渐成为容器编排的最热最主流的平 ...
- Linux下使用thrfit
1.安装boost.thrfit 2.生成gen-cpp 3.编译其中的server,方法为: (1).直接使用g++编译 g++ -o server HelloWorld.cpp helloworl ...
- Linux下rz,sz与ssh的配合使用,实现文件传输
一般来说,linux服务器大多是通过ssh客户端来进行远程的登陆和管理的,使用ssh登陆linux主机以后,如何能够快速的和本地机器进行文件的交互呢,也就是上传和下载文件到服务器和本地: 与ss ...
- hdoj 5122 K.Bro Sorting 贪心
K.Bro Sorting Time Limit: 2000/2000 MS (Java/Others) Memory Limit: 512000/512000 K (Java/Others) Tot ...
- POJ 3061 Subsequence 尺取法,一个屌屌的O(n)算法
Subsequence Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9050 Accepted: 3604 Descr ...
- malloc、calloc和realloc比较
1.先看看它们的原型(stdlib.h): void *malloc( size_t size ); void *calloc( size_t numElements, size_t sizeOfEl ...