Search results for

Popping Sound

19,350 results found

Post

Replies

Boosts

Views

Activity

"in app purchases" - Auto renew subscriptions
Hi,Hi, This query is regarding In app purchases - Auto renew subscriptions. I would like to create an app which allows users to subscribe for auto renew subscription for route maps. Section 11.15 in App Review guidelines says 11.15Apps may only use auto-renewing subscriptions for periodicals (newspapers, magazines), business Apps (enterprise, productivity, professional creative, cloud storage), and media Apps (video, audio, voice), or the App will be rejectedMy question is wheter the route maps allowed as a digital content for auto renew subscription or not.
1
0
651
Jul ’15
No sound in beta 2
I have no sound. I am on a Macbook Pro Retina 13 Early 2015.I noticed this sometime after using a Fretlight Guitar and accomanying software. I am not sure if using MIDI triggered it somehow, but sound was working while I was using it.I have no airplay audio devices listed when option clicking the speaker icon.Under Sound Preferences, everything appears normal.MIDI Audio setup the master volume slider is greyed out and set all the way down.I've tried resetting the SMC and PRAM to no avail.There is sound on boot, but abosultely nothing in OS X.Volume controls are fine, no cross circle or red light.
1
0
359
Jul ’15
iOs 9b - Audio device xx error sample rate is 0.
Hello, I just fired up XCode 7 and iOS9. Launched my app Thailes (id889292455) in the simulator, which plays a tune when loaded. I get jagged audio and a neverending stream of messages in the log that look like this:2015-07-02 13:01:25.164 Thailes[1791:423977] 13:01:25.164 ERROR:>aqme> 299: Audio device 0x46: error '!obj' fetching sample rate, or sample rate is 0. Defaulting to 44100. 2015-07-02 13:01:25.165 Thailes[1791:423977] 13:01:25.165 ERROR:210: EXCEPTION thrown ('!dev'): error != 0 2015-07-02 13:01:25.165 Thailes[1791:423977] 13:01:25.165 ERROR:752: Can't make UISound Renderer 2015-07-02 13:01:25.203 Thailes[1791:423998] 13:01:25.203 ERROR:>aqme> 299: Audio device 0x4f: error '!obj' fetching sample rate, or sample rate is 0. Defaulting to 44100. 2015-07-02 13:01:25.203 Thailes[1791:423998] 13:01:25.203 ERROR:210: EXCEPTION thrown ('!dev'): error != 0 2015-07-02 13:01:25.206 Thailes[1791:423998] 13:01:25.206 ERROR:>aqme> 299: Audio device 0x55: erro
0
0
510
Jul ’15
Reply to What is mediaserverd actually responsible for?
Warning, Im not from Apple, nor do I have any insight other than what ive gleaned from working with AVF on desktop and on iOS.My understanding is that mediaserverd handles vending and recieveing IOSurface backed pixel buffers from the camera, video encoder and video decoder, audio, jpeg encoder and png encoder. mediaserverd also handles setting up your camera controls, playing movies and what not.This is why there is asynchronous key value loading and latency, and threading concerns because of the IPC mechanisms being employed for AVFoundation to talk to mediaserverd on your behalf (and to send respondes from mediaserverd back).Ive had issues where ive done stupid things, or maybe found a weird bug in medaiserver accidentally, and had jpeg decoding in my app die because, well, we crashed the hardware decoder, etc.Basically, mediaserverd asyncrhonously conducts media on the device and negotiates between multiple app's encoding, playback and what not sessions.
Topic: Media Technologies SubTopic: Audio Tags:
Jul ’15
Reply to IdentifierForVendor changed unexpectedly + forum is broken
I've just checked my bug report, which was marked as Duplicated and it now says that the original bug is closed. This sounds as good news, but does anyone has more details? What whas fixed and where? Connect, xcode, SDK, iOS?Some more information from Apple would really be useful as this bug caused some severe problems with our apps and we need to explain what happened to our clients.
Jul ’15
Reply to Reordering View Controllers in the Document Outline when in the Storyboard
Hello Simpsonics.Thank you for your reply.While there are some pages that have the same layout, most don't. I will list a few layouts...12 views (3 across - 4 down) all still .png files displayed in each view7 views (1 top panoramic view - 6 lower views) or...7 views (6 views - 1 lower panoramic view)12 views with the first view displaying animation with sound12 views with the last view displaying animation with sounda full page viewa full page view displaying animation with sound, then that view is hidden and 12 views becoming unhidden displaying 12 still .png files.a full page view displaying animation and then cutting to a camera feed from the iPad's camera to put the users face into the comic book page, then hiding the user's face and cutting to a standard 12 views. (It is imperative to the plot that the user sees themselves right in the comic book!)and a few more, but you get the idea.Now at first I used the page based app template (as I described in the above post) and had all these different c
Jul ’15
Swift and XCode 7 beta 2 are not displaying the metadata of the songs playing
I'm doing a test program dealing with audio and tableView, right now I have the controller working and playing the chosen song correctly, but I'm trying to display the metadata from the mp3 file and is not doing anything currently I have it like this:Function to print the data:func testAudioStuff(testURL testURL: NSURL) { let audioInfo = AVPlayerItem(URL: testURL) let metaDataList = audioInfo.asset.metadata as [AVMetadataItem] for item in metaDataList { if item.commonKey == nil { continue } if let key = item.commonKey, let value = item.value { print(key) print(value as! String) if key == title { print(key) print(here is the title + (value as! String)) } if key == artist { print(key) print(here is the artist + (value as! String)) } if key == artwork { print(here is the artwork + (value as! String)) } } } }Function to play the music:func playSelectedMusic(song: Int, section: Int) { if section == 1 { if let starMusic = productsAndMusic[Music] { let play = starMusic[song].componentsSeparatedByString(.)[0
1
0
331
Jul ’15