Difference between revisions of "Mpgtx"
From Notes_Wiki
(Created page with "<yambe:breadcrumb>Sound_and_video_related_tools|Sound and video related tools</yambe:breadcrumb> =mpgtx= ==Split mp3 or other media files using time== To split mp3 file into...") |
m |
||
Line 1: | Line 1: | ||
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Sound and video related tools]] > [[Mpgtx]] | |||
==Split mp3 or other media files using time== | ==Split mp3 or other media files using time== | ||
Line 29: | Line 28: | ||
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Sound and video related tools]] > [[Mpgtx]] |
Latest revision as of 13:35, 24 August 2022
Home > CentOS > CentOS 6.x > Sound and video related tools > Mpgtx
Split mp3 or other media files using time
To split mp3 file into parts use command or package mpgtx. Install mpgtx using yum. Then use following command to split mp3 file into parts using time:
mpgtx -s <input-file> "[<time-range>]" -b <output-base-name>
Example invocation is:
mpgtx -s 01.mp3 "[00:35-01:25]" -b 01-edit
For more information read 'man mpgtx'.
Ref: http://go2linux.garron.me/trim-cut-join-split-mp3-files-with-linux
Join mp3 or other media files
To join mp3 or other media files one can use mpgtx package and command. To join use:
mpgtx -j <input-files> ... -o <output-file>
Example invocation is:
mpgtx -j 01-edit.mp3 01-edit.mp3 -o saurabh.mp3
Home > CentOS > CentOS 6.x > Sound and video related tools > Mpgtx