Export / Export Audio / (external program)
ffmpeg -i - -codec:a libopus -b:a 64k -vbr on -compression_level 10 "%f" # whithout space in path file| "additionalInfo/Accessibility/0/Wheelchair accessible entrance","additionalInfo/Accessibility/1/Wheelchair accessible parking lot","address","categories/0","categories/1","categoryName","checkInDate","checkOutDate","cid","city","claimThisBusiness","countryCode","description","googleFoodUrl","hotelDescription","hotelReviewSummary","hotelStars","imageCategories/0","imageCategories/1","imageCategories/2","imageCategories/3","imageCategories/4","imagesCount","isAdvertisement","locatedIn","location/lat","location/lng","menu","neighborhood","openingHours/0/day","openingHours/0/hours","openingHours/1/day","openingHours/1/hours","openingHours/2/day","openingHours/2/hours","openingHours/3/day","openingHours/3/hours","openingHours/4/day","openingHours/4/hours","openingHours/5/day","openingHours/5/hours","openingHours/6/day","openingHours/6/hours","peopleAlsoSearch/0/category","peopleAlsoSearch/0/reviewsCount","peopleAlsoSearch/0/title","peopleAlsoSearch/0/totalScore","peopleAlsoSearch/1/category","peopleAlsoSearch/1/re |
| MIT License | |
| Copyright (c) 2022 Matt Johnson-Pint | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| MIT License | |
| Copyright (c) 2022 Matt Johnson-Pint | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| using System; | |
| using System.Reactive; | |
| using System.Reactive.Concurrency; | |
| using System.Reactive.Disposables; | |
| using System.Reactive.Linq; | |
| using System.Reactive.Threading.Tasks; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using ReactiveUI; |
| using Xamarin.Forms; | |
| [assembly: ExportRenderer(typeof(Appname.Views.DeviceInfoPage), typeof(Appname.iOS.Renderers.NoSwipeBackPageRenderer))] | |
| namespace Appname.iOS.Renderers | |
| { | |
| // Custom Rendered to disable the swipe back of provided page type (in this case DeviceInfoPage...) | |
| // source: https://forums.xamarin.com/discussion/26966/how-to-disable-swipe-gesture-on-pushed-page | |
| public class NoSwipeBackPageRenderer : PageRenderer | |
| { | |
| public override void ViewDidAppear(bool animated) |
| using UIEffects = ScrollView.UI.Effects; | |
| [assembly: ResolutionGroupName(Constants.EffectsNamespace)] | |
| [assembly: ExportEffect(typeof(ScrollBarColorEffect), nameof(ScrollBarColorEffect))] | |
| namespace ScrollView.Droid.Effects | |
| { | |
| public class ScrollBarColorEffect : PlatformEffect | |
| { | |
| protected override void OnAttached() |
| using System; | |
| using Android.Content.PM; | |
| namespace ContactListSample.Droid | |
| { | |
| public static class PermissionUtil | |
| { | |
| /** | |
| * Check that all given permissions have been granted by verifying that each entry in the | |
| * given array is of the value Permission.Granted. |
| using System; | |
| using System.Reactive.Concurrency; | |
| using System.Reactive.Disposables; | |
| using System.Reactive.Linq; | |
| using System.Threading; | |
| namespace ObserveLatestOn | |
| { | |
| public static class ObservableExtensions | |
| { |
| #!/bin/sh | |
| in_1_fname=./wavefile1.wav | |
| in_2_fname=./wavefile2.wav | |
| out_fname=./out.wav | |
| threshold=-50dB | |
| pause=1.5 # seconds | |
| ffmpeg -loglevel verbose -y \ |