Java merges two audio segments into one segment and plays similar accompaniment simultaneously

Source: Internet
Author: User

/***** @ Param partsPaths audio path array to be merged * @ param unitedFilePath input merging result array */public void uniteWavFile (String [] partsPaths, String unitedFilePath) {byte byte1 [] = getByte (partsPaths [0]); byte byte2 [] = getByte (partsPaths [1]); byte [] out = new byte [byte1.length]; for (int I = 0; I <byte1.length; I ++) out [I] = (byte) (byte1 [I] + byte2 [I])> 1 ); try {FileOutputStream fos = new FileOutputStream (new File (unitedFilePath); fos. write (out); fos. close ();} catch (Exception e) {e. printStackTrace () ;}} private byte [] getByte (String path) {File f = new File (path); InputStream in; byte bytes [] = null; try {in = new FileInputStream (f); bytes = new byte [(int) f. length ()]; in. read (bytes); in. close ();} catch (Exception e) {e. printStackTrace ();} return bytes ;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.