This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This snippets expect that your functions use JSON as both input and output | |
| // Connect to appwrite, should be globaly shared | |
| let sdk = new Appwrite(); | |
| sdk | |
| .setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint | |
| .setProject("5df5acd0d48c2"); // Your project ID | |
| // Shared type for strict type definition |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://github.com/jiaaro/pydub | |
| from pydub import AudioSegment | |
| files_path = '' | |
| file_name = '' | |
| startMin = 9 | |
| startSec = 50 |