Skip to content

Instantly share code, notes, and snippets.

@tamoyal
tamoyal / main.dart
Created May 30, 2020 22:17
Audio Chat Bubble with Clip (not working)
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@tamoyal
tamoyal / gist:a2fd3d76f6327d8e963f5136291c073d
Created September 17, 2021 23:52
For batch converting aif to mp3 and keeping original filename
for f in *.aif;
do
ffmpeg -i "$f" -f mp3 -acodec libmp3lame -ab 192000 -ar 44100 "${f%.aif}".mp3;
done