`

Linux下小巧的mp3分割工具mp3splt简介

 
阅读更多
有时想将一个mp3文件某一段截取出来,在Linux可以选择使用mp3splt这个工具。该工具其实还支持对ogg格式文件的分割。
下面以mp3为例简要介绍一下它的使用:
(1) 安装
可以从源里直接安装:sudo aptitude install mp3splt

(2) 分割
假如有一个待分割的test.mp3文件,如果想截取其中的2分15秒~2分45秒这一段,则最简单的命令
  1. mp3splt test.mp3 2.15 2.45
复制代码
这样,会自动将这一段存储为一个名为test_2.15_2.45.mp3的文件

当然也可以自己定义输出的文件名:
  1. mp3splt test.mp3 2.15 2.45 -o out.mp3
复制代码
(3) 更多
关于该工具的更多、高级用法,请参阅它的man手册及其中的示例:

mp3splt album.mp3 54.32.19 67.32 -o out
mp3splt album.ogg 54.32.19 67.32 -o out
This is the standard use of mp3splt for constant bitrate mp3 or for any ogg.You specify a begin time (which in this case uses hundredths, 54.32.19), an end time and an output file.

mp3splt -f -d newdir album.mp3 album2.mp3 145.59  234.2
This is frame mode for variable bitrate mp3 and multiple files.You can see that time format uses min.sec even if minutes are over 60.Output files in this case will be: album_145m_59s_0h__234m_2s_0h.mp3 and album2_145m_59s_0h__234m_2s_0h.mp3because user didn't specify it and they will be in the directory named newdir.

mp3splt  -nf album.mp3  0.12  21.34.7  25.3  30.40  38.58
This is the use of -n option and multiple splitpoints. Four files will be createdand will not contain ID3 informations.

mp3splt  -w  album_MP3WRAP.mp3
This is Wrap mode. You can use this when mp3 is a file wrapped with Mp3Wrap or AlbumWrap.You can specify an output directory with the -d option.


mp3splt  -lq  album.mp3
This is List mode. You can use this when you want to list all tracks of a wrapped file without extracting them.With quiet option (-q), program will not calculate CRC!


mp3splt -s f.mp3 or mp3splt -s -p th=-50,nt=10 f.mp3
This is silence option. Mp3splt will try to automatically detect splitpoints with silence detection and in the first casewill split all tracks found with default parameters, while in the second 10 tracks (or less if too much) with the mostprobable silence points at a threshold of -50 dB.


mp3splt  -c  file.cddb  album.mp3
This is CDDB mode with a local file. Filenames and splitpoints will be taken from file.cddb.


mp3splt  -c  query  album.mp3
This is CDDB mode with internet query. Will ask you the keyword to search and you will selectthe wanted cd.

mp3splt  -a -c  file.cddb album.mp3
This is CDDB mode with auto-adjust option (default parameters). Splitpoints will beadjusted with silence detection in a range of 30 seconds before and after cddb splitpoints.


mp3splt  -a -p gap=15,th=-23,rm -c  file.cddb album.mp3
This is CDDB mode with auto-adjust option. Splitpoints will be adjusted with silencedetection in a range of 15 seconds before and after cddb splitpoints, with a threshold of -23 dB,and silence will be removed.

mp3splt  -c  query  album.mp3 -n -o @n_@t
This is CDDB mode with internet query with Frame mode, NoID3 and Output format.Output filenames will be named like: 01_Title.mp3


mp3splt  -t  10.00  album.mp3
This is -t option. It will split album.mp3 in many files of 10 minutes each.
 
分享到:
评论

相关推荐

    mp3OGG音乐切割器Mp3Spltv2.5官方版

    Mp3Splt是一个简单,强大和可靠的实用程序,用来切割MP3和OGG文件,选择开始和结束时间的位置,而不进行解码保持音乐的原汁原味。 切割大的MP3/OGG​​的使较小的文件或整个专辑拆分,以获得原始音轨。如果你想拆分...

    SPLT论文以及代码

    SPLT(Split and Pursue Long-Term Tracker)是由“分割与追击”这一概念演化而来,其核心在于面对复杂的跟踪环境,如目标遮挡、形变、光照变化等,能够灵活地进行目标状态的更新和再识别。该算法在长期跟踪中展现了...

    mpg2splt.ax

    mpg2splt

    chaptersplit:根据嵌入的章节将 MP4 文件拆分为 MP3 文件

    MP3splt是一款专门用于分割MP3文件的工具,它可以基于时间或者元数据(如章节信息)进行分割。在这个项目中,mp3splt接收由ffmpeg和lame处理后的MP3文件,并根据章节信息将它们分割成独立的文件。 4. **id3tag**:...

    mp3splt:实用程序,可在不解码的情况下拆分mp3,ogg vorbis和FLAC文件-开源

    mp3splt是免费的实用程序,可将mp3,ogg vorbis和FLAC文件分割而不解码,选择开始/结束时间; 如果文件是专辑,则可以从Internet或本地提示cddb文件自动获取拆分点。 它还会拆分Mp3Wrap和AlbumWrap存档。 通过静音...

    splt600w

    标题 "splt600w" 暗示我们正在讨论一个与软件或技术相关的主题,可能是某种程序或工具的版本。描述中的 "splt600w" 与标题一致,表明这是一个专有名词,可能是一个软件的名字或特定功能的代码。标签同样为 "splt600w...

    mp3splt:提供mp3,ogg vorbis,FLAC和其他音频格式的帧精确拆分,而无需解码或重新编码。 该项目于2020-09-13从原始Sourceforge项目迁移而来

    libmp3splt编译 安装构建和文档依赖项: autopoint , autoconf , libtool , gettext , doxygen , graphviz 。 而且所需的库: libmad , libogg , libvorbis , libid3tag , libflac 。 在类似Debian的系统上...

    linux命令实现音频格式转换和拼接的方法

    转换后再用`mp3splt`按`.cue`文件分割: ```bash mp3splt -c song.cue -o @n.@t song.mp3 ``` 4. **音频拼接与混合**: - 使用`ffmpeg`可以方便地将多个音频文件拼接在一起: ```bash # 两个音频拼接 ffmpeg...

    SPLT:“跳过浏览”跟踪

    这是ICCV 2019论文SPLT 的python 3.6版本代码。 此代码已经过测试 RTX 2080Ti CUDA 10.0 + cuDNN 7.6 / CUDA 9.0 + cuDNN 7.1.2 Python 3.6 Ubuntu 18.04.2 LTS 此代码在VOT18-LT35上的F分数是0.610,比原始...

    占用资源极小的播放器

    CnSide MP 播放器 For LeadBBS 使用说明 这个播放机非常小巧,占用资源极小。播放器支持mp1、mp2、mp3、wma、asf等各种格式,但是不支持rm和mov格式。 1、将player.htm和player目录上传至论坛根...

    jsp语法

    【JSP语法详解】 ...以下将详细介绍JSP的主要语法元素。 1. **JSP页面的组成元素** JSP页面由静态部分和动态部分构成。...动态部分由注释、脚本、指令和动作元素组成。... declaration %>`)、表达式(`<%= expression %>`...

    如何实现Oracle中字符串分隔.pdf

    在Oracle中,字符串分隔通常涉及到将一个长字符串按照特定的分隔符切割成多个子字符串。Oracle提供了多种函数来实现这一功能,例如`INSTR`、`SUBSTR`和`REGEXP_SUBSTR`等。下面我们将以`INSTR`和`SUBSTR`函数为例,...

    AudioWrapper-开源

    用Java编写的mp3splt和mp3wrap的GUI(接口)。 AlbumWrapper的开源替代品。 与AlbumWrapper兼容,仅用于拆分

    昕格日记插件 for leadbbs 2.88

    3、在LeadBBS根目录下找到 IncBoard_Popfun.asp ,2.88(2003.10.30)大约在第845-846(2.77为878-879)行之间加: <br>Response.Write " <img src=" & DEF_BBS_HomeUrl & "images/" & GBL_DefineImage & "splt....

    网络电台插件 for leadbbs 2.88

    Help文件里 <br>然后在论坛根目录下INC文件夹里修改Board_Popfun.asp <br>在大概875行上添加: Response.Write " <img src=" & DEF_BBS_HomeUrl & "images/" & GBL_DefineImage & "splt.gif align=...

    Au8830声卡驱动For WinXPVistaWin7

    这款驱动程序旨在优化声卡性能,确保在不同系统环境下提供高质量的声音输出,增强音频体验。 Aureal傲锐Au8830声卡是一款在早期个人计算机中广泛使用的硬件,以其出色的3D音效和环绕声技术闻名。这款声卡支持多种...

    TxtRead.cs

    C#使用StreamReader读取文本文件,最后将读取的内容存到数组返回,其中内容是按空格分开的,通过splt方法分隔取数,完美。

Global site tag (gtag.js) - Google Analytics