Discover built-in sound classification in SoundAnalysis

RSS for tag

Discuss the WWDC21 session Discover built-in sound classification in SoundAnalysis.

Posts under wwdc21-10036 tag

8 Posts

Post

Replies

Boosts

Views

Activity

Data-binding not working Xamarin Forms
I am updating a Xamarin App it is working perfectly on the iOS simulator but Not working on iOS devices. I am able to deploy on iOS devices. When I am filling in the fields it's not being set to the model all parameters are empty. Image paths are Null, Constant variables are null. On the simulator data binding is working. I have uploaded the relative code on the GitHub link https://github.com/omshergill/MobileApp using System;using System.Collections.Generic;using System.ComponentModel;using System.Text;using System.Threading.Tasks;using VolMobile.AppData.Interfaces;using VolMobile.AppData.SQL;using Xamarin.Essentials;using Xamarin.Forms; namespace VolMobile.Pages.AuthenticationPages.Login{ public class LoginPageViewModel : INotifyPropertyChanged { //private static ILogger logger = DependencyService.Get<ILogManager>().GetLog(); public LoginPageViewModel() { } public void Load() { //RememberMe = DeviceStorage.RememberMe; //if (DeviceStorage.RememberMe == true) //{ //UserName = DeviceStorage.UsersName; //+AppData.AppData.Alpha_Beta_Version -->adding extra @beta/alpha to name on log in. //} IsLoading = false; } #region Properties public string AppVersion { get { return "v." + AppInfo.VersionString; } } string _UserName = string.Empty; public string UserName { get { return _UserName; } set { _UserName = value; OnPropertyChanged(nameof(UserName)); } } string _Password = string.Empty; public string Password { get { return _Password; } set { _Password = value; OnPropertyChanged(nameof(Password)); } } private bool _RememberMe = false; public bool RememberMe { get { return _RememberMe; } set { _RememberMe = value; OnPropertyChanged(nameof(RememberMe)); } } private bool _IsLoading = true; public bool IsLoading { get { return _IsLoading; } set { _IsLoading = value; OnPropertyChanged(nameof(IsLoading)); } } #endregion public async Task Login() { IsLoading = true; var userNameStripped = HttpCalls.ApiFunctions.SetServerURI(UserName); try { await App.AppState.AppControllers.tokenController.GetAuthorizationToken(userNameStripped, Password); } catch (Exception ex) { Console.WriteLine(ex.Message); } if (App.AppState.AppSettings.loggedIn) { //Run the Post login Initialization of Controllers try { await App.AppState.Initialize_PostLogin(); } catch (Exception ex) { //logger.Error(App.LogPrefix() + "Init_PostLogin error: " + ex.Message); Console.WriteLine(App.LogPrefix() + "Init_PostLogin error: " + ex.Message); } //Proceed to dashboard // Device.BeginInvokeOnMainThread(() => //{ try { App.Current.MainPage = new Navigation.Navigation(new Dashboard.DashboardPage()); } catch (Exception ex) { //logger.Error(App.LogPrefix() + "Error opening Navigation Page: " + ex.Message); Console.WriteLine(App.LogPrefix() + "Error opening Navigation Page: " + ex.Message); this.IsLoading = false; } //}); } else { this.IsLoading = false; } } //Property change event, used to update data bound objects in the UI public event PropertyChangedEventHandler PropertyChanged; protected virtual void OnPropertyChanged(string propName) { System.Diagnostics.Debug.WriteLine("Before"); var handler = this.PropertyChanged; if (handler == null) { return; } System.Diagnostics.Debug.WriteLine("Fired"); handler(this, new PropertyChangedEventArgs(propName)); } }}
1
0
829
Feb ’22
Missing sound / ringer
For some reason when I receive a call/text/ FaceTime/email I don’t get any sound, the sound has disappeared. I have the volume on max and all it does is vibrate. I have pressed reset on phone but it hasn’t helped. Any suggestions would be welcomed. TIA
0
0
534
Sep ’21
Supported classes in the built-in Sound Classifier model
Where can I find a comprehensive list of all the classes that the built in Sound Classifier model supports?
Replies
1
Boosts
0
Views
1.6k
Activity
Jun ’23
Cracking sound on playing Music on Macbook Pro 14
I have cracking sound while playing music recurrently, which disturbs a lot. Its on new Macbook Pro 14 M1 Pro, running Os Monterey 12.3.1 Kindly help me out to fix
Replies
1
Boosts
0
Views
1.3k
Activity
May ’22
Save selected sounds of the list
Hi, Is it possible to save the selected sounds in the app? so you don't have to choose again when you close the app.
Replies
0
Boosts
0
Views
794
Activity
Mar ’22
list of sound classes in Sound Analysis announced in WWDC 2021
Dear all, I found the announced built-in sound classifier pretty amazing. I would appreciate it if you could point me to a link or a document that is listed all 300 sound classes mentioned in https://developer.apple.com/videos/play/wwdc2021/10036/. Thank you
Replies
2
Boosts
0
Views
2.9k
Activity
Mar ’22
Data-binding not working Xamarin Forms
I am updating a Xamarin App it is working perfectly on the iOS simulator but Not working on iOS devices. I am able to deploy on iOS devices. When I am filling in the fields it's not being set to the model all parameters are empty. Image paths are Null, Constant variables are null. On the simulator data binding is working. I have uploaded the relative code on the GitHub link https://github.com/omshergill/MobileApp using System;using System.Collections.Generic;using System.ComponentModel;using System.Text;using System.Threading.Tasks;using VolMobile.AppData.Interfaces;using VolMobile.AppData.SQL;using Xamarin.Essentials;using Xamarin.Forms; namespace VolMobile.Pages.AuthenticationPages.Login{ public class LoginPageViewModel : INotifyPropertyChanged { //private static ILogger logger = DependencyService.Get<ILogManager>().GetLog(); public LoginPageViewModel() { } public void Load() { //RememberMe = DeviceStorage.RememberMe; //if (DeviceStorage.RememberMe == true) //{ //UserName = DeviceStorage.UsersName; //+AppData.AppData.Alpha_Beta_Version -->adding extra @beta/alpha to name on log in. //} IsLoading = false; } #region Properties public string AppVersion { get { return "v." + AppInfo.VersionString; } } string _UserName = string.Empty; public string UserName { get { return _UserName; } set { _UserName = value; OnPropertyChanged(nameof(UserName)); } } string _Password = string.Empty; public string Password { get { return _Password; } set { _Password = value; OnPropertyChanged(nameof(Password)); } } private bool _RememberMe = false; public bool RememberMe { get { return _RememberMe; } set { _RememberMe = value; OnPropertyChanged(nameof(RememberMe)); } } private bool _IsLoading = true; public bool IsLoading { get { return _IsLoading; } set { _IsLoading = value; OnPropertyChanged(nameof(IsLoading)); } } #endregion public async Task Login() { IsLoading = true; var userNameStripped = HttpCalls.ApiFunctions.SetServerURI(UserName); try { await App.AppState.AppControllers.tokenController.GetAuthorizationToken(userNameStripped, Password); } catch (Exception ex) { Console.WriteLine(ex.Message); } if (App.AppState.AppSettings.loggedIn) { //Run the Post login Initialization of Controllers try { await App.AppState.Initialize_PostLogin(); } catch (Exception ex) { //logger.Error(App.LogPrefix() + "Init_PostLogin error: " + ex.Message); Console.WriteLine(App.LogPrefix() + "Init_PostLogin error: " + ex.Message); } //Proceed to dashboard // Device.BeginInvokeOnMainThread(() => //{ try { App.Current.MainPage = new Navigation.Navigation(new Dashboard.DashboardPage()); } catch (Exception ex) { //logger.Error(App.LogPrefix() + "Error opening Navigation Page: " + ex.Message); Console.WriteLine(App.LogPrefix() + "Error opening Navigation Page: " + ex.Message); this.IsLoading = false; } //}); } else { this.IsLoading = false; } } //Property change event, used to update data bound objects in the UI public event PropertyChangedEventHandler PropertyChanged; protected virtual void OnPropertyChanged(string propName) { System.Diagnostics.Debug.WriteLine("Before"); var handler = this.PropertyChanged; if (handler == null) { return; } System.Diagnostics.Debug.WriteLine("Fired"); handler(this, new PropertyChangedEventArgs(propName)); } }}
Replies
1
Boosts
0
Views
829
Activity
Feb ’22
Default IOS ringtone and alert notification not visible
IOS mobile app developed using react native and objective C (for push notification), post deployment observed default IOS ringtone and alert notification sound is not visible.
Replies
0
Boosts
0
Views
699
Activity
Feb ’22
Working with live HLS stream
Is it possible to use SNAudioFileAnalyzer with live HLS(m3u8) stream? Maybe we need to extract somehow audio from it? And Can we use SNAudioFileAnalyzer with real remote url? Or we can use it only with files in file system?
Replies
0
Boosts
0
Views
617
Activity
Dec ’21
Missing sound / ringer
For some reason when I receive a call/text/ FaceTime/email I don’t get any sound, the sound has disappeared. I have the volume on max and all it does is vibrate. I have pressed reset on phone but it hasn’t helped. Any suggestions would be welcomed. TIA
Replies
0
Boosts
0
Views
534
Activity
Sep ’21