Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by incorrect · May 27, 2014 at 04:05 PM · audiomusicmixing

Music mixing

I want to play an intro and then start playing looped main theme. I made two audio sources for this and a script on loop object. The idea was to make loop object check if the intro has finished and then start playing the loop. Putting details aside I'm stuck with the gap in sound between the end of intro and loop.

The code for loop check looks like this:

 void Update () {
         if ((!audio.isPlaying) & (!begining.audio.isPlaying))
                         audio.Play ();
     }
Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image AlucardJay · May 27, 2014 at 04:50 PM 0
Share

Are you using mp3 or wav? mp3 has a small amount of data is added to the beginning/end of the $$anonymous$$P3, I am assu$$anonymous$$g for ID tag and track info, image etc.

2 Replies

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by MakeCodeNow · May 27, 2014 at 10:24 PM

The gap is happening because one Update call happens before the end of the song and the next is after the end. If you want two tracks to sync perfectly, use AudioSource.PlayDelayed(). In this case, you can just play the intro and then immediately call PlayDelayed on the loop passing in the length of the intro. Alternatively, you could keep your current code, but have it play the loop when the intro is near then end (i.e. before it's finished). When you detect that it's near the end, use PlayDelayed on the loop using the amount of time remaining in the intro track.

Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image incorrect · May 28, 2014 at 10:47 AM 0
Share
 public GameObject begining;
 
     void Start () {
         audio.PlayDelayed (begining.audio.clip.length);
     }

Still have this disgusting gap.

avatar image incorrect · May 28, 2014 at 12:07 PM 0
Share

Did this way on the loop sound source: void Update () { if (beginning.audio.time >11.08f) audio.Play (); }

At least there is no gap, but now I have some phase issues. Thnx for help, anyway. I guess my problem needs some research to be done rather then just a single question asking.

avatar image
0

Answer by 5argon · Jan 08, 2016 at 01:10 PM

Alternatively, use Introloop script to handle the intro to looping seamlessly and automatically. Also no need to cut the audio into 2 parts, just one with 2 time boundaries is enough. Because of this, the compression that adds small amount of space at the head and tail does not matter. You can use anything you like. http://forum.unity3d.com/threads/378370/

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

23 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Audio controls disabled??! 0 Answers

Stereo Mix as Input? 1 Answer

Can not play a disabled audio source 2 Answers

IEnumerator issues 3 Answers

How To Turn Off Sound For Certain Objects? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges