Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opusI figured that I would write down my findings somewhere since this is my first time using Frida. This won't cover installing frida, adb, apktool because these are well covered in other sources.
| let th = {"Su":[],"Mo":[],"Tu":[],"We":[],"Th":[],"Fr":[],"Sa":[]}; | |
| const tk = Object.keys(th); | |
| const now = new Date(); | |
| const month = new Date(now.getFullYear(), now.getMonth()+1, 0); | |
| const daysInMonth = month.getDate(); | |
| let moI = month.getDay()-1; | |
| // fill days before | |
| for (let i = 0; i < moI; i++) { |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "math/rand" | |
| "net/http" | |
| "time" | |
| "github.com/prometheus/client_golang/prometheus" |
| /* | |
| * Copyright (c) 1996, 1998, Oracle and/or its affiliates. All rights reserved. | |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | |
| * | |
| * This code is free software; you can redistribute it and/or modify it | |
| * under the terms of the GNU General Public License version 2 only, as | |
| * published by the Free Software Foundation. Oracle designates this | |
| * particular file as subject to the "Classpath" exception as provided | |
| * by Oracle in the LICENSE file that accompanied this code. | |
| * |
| #!/bin/bash | |
| # script name: install_waydroid.sh | |
| # description: Install Waydroid on unsupported Debian based distro caused by incompatible python3-gbinder package | |
| # related to : https://github.com/waydroid/waydroid/issues/214#issuecomment-1120926304 | |
| # author : Wachid Adi Nugroho <[email protected]> | |
| # date : 2022-07-07 | |
| export distro=$(grep -oP '(?<=^NAME=).*' /etc/os-release) | |
| if [[ -f /usr/bin/dpkg ]]; |
| #!/usr/bin/env playonlinux-bash | |
| [ "$PLAYONLINUX" = "" ] && exit 0 | |
| source "$PLAYONLINUX/lib/sources" | |
| TITLE="Adobe Acrobat Reader DC" | |
| PREFIX="AdobeAcrobatReaderDC" | |
| WINEVERSION="4.0.3" | |
| EDITOR="Adobe Systems Inc." | |
| GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html" |
| #!/usr/bin/env bash | |
| # REF: https://github.com/cloudflare/cfssl | |
| # Change working directory | |
| cd -- "$( | |
| dirname "${0}" | |
| )" || exit 1 | |
| readonly CA_ROOT_CERT_KEY="ca-root" |