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
| CREATE TABLE `Countries` ( | |
| `ID` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, | |
| `NAME` CHAR(100) NOT NULL UNIQUE, | |
| `ISO` CHAR(2) NOT NULL UNIQUE | |
| ); | |
| INSERT INTO Countries (Name, ISO) VALUES ('Afghanistan', 'AF'); | |
| INSERT INTO Countries (Name, ISO) VALUES ('Albania', 'AL'); | |
| INSERT INTO Countries (Name, ISO) VALUES ('Algeria', 'DZ'); | |
| INSERT INTO Countries (Name, ISO) VALUES ('American Samoa', 'AS'); | |
| INSERT INTO Countries (Name, ISO) VALUES ('Andorra', 'AD'); |
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
| brew update | |
| brew link yasm | |
| brew link x264 | |
| brew link lame | |
| brew link xvid | |
| brew install ffmpeg | |
| ffmpeg wiki: | |
| https://trac.ffmpeg.org/wiki/Encode/MP3 |