Post

Replies

Boosts

Views

Activity

Reply to Apple Intelligence stuck at 100% on macOS 26 Beta 1
No, issue is not fixed now.
Replies
Boosts
Views
Activity
Jun ’25
Reply to CoreMediaErrorDomain error -12971
This error means "failed to parse segment as either an MPEG-2 TS or an ES"
Topic: Media Technologies SubTopic: Streaming Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to XCode 12 & iOS 14 getting crash and not able to know exact reason
@HighlyExperienced You need redesign your code to make it main-thread-safety or you can use this snippet for working with UIKit: void vkm_sync_main(dispatch_block_t block) {     if (block == nil) return;     if ([NSThread isMainThread]) {         block();     } else {         dispatch_sync(dispatch_get_main_queue(), block);     } }
Replies
Boosts
Views
Activity
Jan ’22
Reply to I want to distribute the app ans this error pops up...
I changed Bundle version string (short) in the Info.plist file to proper from empty and archive was successfully uploaded!
Replies
Boosts
Views
Activity
Jan ’22
Reply to video playback error in airplay mode
I had the same issue when my tv has no connection to the Internet.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Sep ’21