I record audio using avaudiorecorder. How to find record length after saving record in .caf file?
You can use helpers in the CoreMedia framework.
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:avAudioRecorder.url options:nil]; CMTime time = asset.duration; double durationInSeconds = CMTimeGetSeconds(time);
Source: https://habr.com/ru/post/888795/More articles:How can I make sure that a super method is called in a child? - javaMVC 3 custom errors not displaying - c #Is it possible to send an object from client javascript to server code via ASP.NET? - javascriptFluentNHibernate: how to translate HasMany (x => x.Addresses) .KeyColumn ("PersonId") into automation - nhibernateMDX support for Hive (Hadoop) - hadoopdjango-registration cannot set email address for "from" - pythonHow to clear Magento caching from its DB schema? - cachingJSF 2.0 Accessing a bean application area from another Bean - jsf-2https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/888799/how-can-i-force-that-tinymce-does-not-convert-b-tags-to-strong-tags&usg=ALkJrhhE1mC6BAJNI6X70P7KPmjEJ4EKsAHow to change apk file name in android - androidAll Articles