To create app like Dubsmash. <https://itunes.apple.com/in/app/dubsmash/id918820076?mt=8> I have merged audio file of any dialogue or song with captured video. Check method to merge video with audio :- // MARK: – Merge Video func mergeVideoWithAudio() { let mutableComposition = AVMutableComposition() var mutableCompositionVideoTrack …
Technology
Swift : Nil Collision Operator ,Save Your iPhone app from random crashes.
Nil-Coalescing Operator: The nil-coalescing operator (a ?? b) unwraps an optional a if it contains a value, or returns a default value b if a is nil. The expression a is always of an optional type. The expression b must match the type that is …
Slow page load
Problem Client was running into an issue where his website pages were taking a really long time to load. Solution The following .htaccess code helped me to solve the issue. #Force non-www: #RewriteEngine On #RewriteCond %{HTTP_HOST} !^www\. #RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] # REDIRECT TO UNDER CONSTRUCTION …
Turn on speakerphone whenever an outgoing call is made
You can set it through programmatically as below : AudioManager audioManager = (AudioManager)getApplicationContext().getSystemService(Context.AUDIO_SERVICE); audioManager.setMode(AudioManager.MODE_IN_CALL); audioManager.setSpeakerphoneOn(true); But, keep in mind that don’t forgot to set speaker off when stop the call: audioManager.setSpeakerphoneOn(false); And, Set permission in manifest: android.permission.RECORD_AUDIO android.permission.MODIFY_AUDIO_SETTINGS This code is working fine for me.hope …
Generating an NFT Dataset from the Digital Image.
Generate Artoolkit Marker you have to follow step Step 1: open terminal Step 2: reach folder where genTexData script located using cd command ex. cd /Desktop/bin/….(path) Step 3: ./genTexData pinball.jpg Step 4: Select extraction level for tracking features from 0,1 or 3 Step 5: Select …
Application is being rejected by Apple due to “LEGAL: INTELLECTUAL PROPERTY – APPLE PRODUCTS”
Under the apple review guidelines section 5.2.3 Audio/Video Downloading: Apps should not facilitate illegal file sharing or include the ability to save, convert, or download media from third party sources (e.g. Apple Music, YouTube, SoundCloud, Vimeo, etc.) without explicit authorization from those sources. Streaming of …
Power of the GPUImageFilters in Swift.
We used below swift functions for effects on image: func getSepiaImage(image : UIImage , intensity : CGFloat) -> UIImage{ sepiaFilter = GPUImageSepiaFilter() sepiaFilter.intensity = intensity let outputImage = sepiaFilter.image(byFilteringImage: image)! as UIImage return outputImage } //to get high contrast image filter func getHighContrastImage(image : UIImage, …
How to log request and response body with Retrofit-Android?
Below code is working for both with header and without header to print log request & response. Note: Just comment .addHeader() line if are not using header.
Amount is not deposited in users account in stripe
When any user need to deposit amount into another users account then amount is debited from the user but not credited into another account. We need to verify stripe user account. using below legal_entity. address postal_code ssn_last_4 personal_id_number identity_document and for check the status is …
Redirect domain from non-www to www host
To redirect from non-www to www host, just have .htaccess file on your root folder (/var/www/.htaccess) with following code.