48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link type="text/css" rel="stylesheet" href="./styles/shCore.css" />
|
|
<link type="text/css" rel="stylesheet" href="./style.css" />
|
|
<link type="text/css" rel="stylesheet" href="./styles/shThemeDefault.css" />
|
|
<script type="text/javascript" src="./scripts/shCore.js"></script>
|
|
<script type="text/javascript" src="./scripts/shBrushBash.js"></script>
|
|
<script type="text/javascript" src="./scripts/shBrushJava.js"></script>
|
|
<script type="text/javascript">
|
|
SyntaxHighlighter.all();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 id="toc_1">mp3 wrap</h1>
|
|
|
|
<p>
|
|
merge
|
|
</p>
|
|
|
|
<pre class="brush: bash; ; toolbar: false;">
|
|
$ mp3wrap tmp.mp3 *
|
|
</pre>
|
|
|
|
<p>
|
|
fix file duration
|
|
</p>
|
|
|
|
<pre class="brush: bash; ; toolbar: false;">
|
|
$ ffmpeg -i tmp_MP3WRAP.mp3 -acodec copy all.mp3 && rm tmp_MP3WRAP.mp3
|
|
</pre>
|
|
|
|
<p>
|
|
copy mp3 tags
|
|
</p>
|
|
|
|
<pre class="brush: bash; ; toolbar: false;">
|
|
$ id3cp 1.mp3 all.mp3
|
|
</pre>
|
|
|
|
|
|
<p>
|
|
[ <a href="index.html">Go home</a> ]
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|