Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
You can get the list of installed codecs with:
#!/bin/bash | |
# | |
# GoLang cross-compile snippet for Go 1.6+ based loosely on Dave Chaney's cross-compile script: | |
# http://dave.cheney.net/2012/09/08/an-introduction-to-cross-compilation-with-go | |
# | |
# To use: | |
# | |
# $ cd ~/path-to/my-awesome-project | |
# $ go-build-all | |
# |
package noman.counterhelper; | |
import android.os.Bundle; | |
import android.support.v7.app.AppCompatActivity; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.TextView; | |
/** | |
* Created by Noman on 11/8/2016. | |
*/ |
package com.your.package | |
import android.app.Dialog | |
import android.os.Bundle | |
import com.your.package.R | |
import com.google.android.material.bottomsheet.BottomSheetDialog | |
import com.google.android.material.bottomsheet.BottomSheetDialogFragment | |
/** | |
* BottomSheetDialog fragment that uses a custom |
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.
<resources xmlns:tools="http://schemas.android.com/tools"> | |
<style name="AppTheme.Material.NoActionBar" parent="Theme.Material3.Dark.NoActionBar"> | |
<item name="android:windowBackground">@color/colorWindowGreyBackground</item> | |
<!-- Primary brand color. --> | |
<item name="colorPrimary">@color/colorPrimary</item> | |
<item name="colorOnPrimary">@color/colorWindowBackground</item> | |
<item name="colorPrimaryContainer">@color/colorAccent</item> | |
<item name="colorOnPrimaryContainer">@color/colorPrimaryDark</item> |