@reels/tui 1.2.3 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +34 -18
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -20,7 +20,11 @@ You need a terminal that supports the **Kitty graphics protocol**:
20
20
  Chrome, Chromium, or Brave must be installed. The app uses headless browser automation to interact with Instagram.
21
21
 
22
22
  ### FFmpeg
23
- FFmpeg 8+ must be installed on your system.
23
+ **macOS:**
24
+ Requires [`ffmpeg-full`](https://formulae.brew.sh/formula/ffmpeg-full) from Homebrew - `brew install ffmpeg-full`. The standard `brew install ffmpeg` will **not work**. You may also build FFmpeg 8+ from [`source`](https://github.com/ffmpeg/ffmpeg) or use [`MacPorts`](https://ports.macports.org/port/ffmpeg/), as long as the **Apple framework dependencies (VideoToolbox, AudioToolbox, etc.) are properly included**.
25
+
26
+ **Linux:**
27
+ Any FFmpeg 8+ from your package manager (e.g. `pacman -S ffmpeg`, `apt install ffmpeg`).
24
28
 
25
29
  ## Usage
26
30
 
@@ -33,29 +37,41 @@ reels
33
37
  - `--login` - Open browser window to log in to Instagram
34
38
 
35
39
  ### Controls
36
- - `j` - Next reel (scroll comments when open)
37
- - `k` - Previous reel (scroll comments when open)
38
- - `Space` - Pause/resume
39
- - `l` - Like/unlike
40
- - `e` - Toggle Navbar
41
- - `c` - Toggle Comments
42
- - `m` - Mute
43
- - `]` - Volume up
44
- - `[` - Volume down
45
- - `s` - Share reel via DM
46
- - `y` - Copy reel link to clipboard
47
- - `=` - Enlarge Video
48
- - `-` - Shrink Video
49
- - `?` - Help
50
- - `q` - Quit
51
-
52
- All keybinds are configurable in `reels.conf`. Each action supports multiple binds.
40
+
41
+ | reels.conf bind | Default | Action |
42
+ |-----------------|---------|--------|
43
+ | `key_next` | `j` | Next reel (scrolls panels when open) |
44
+ | `key_previous` | `k` | Previous reel (scrolls panels when open) |
45
+ | `key_seek_backward` | `h` | Seek backward by 5 seconds |
46
+ | `key_seek_forward` | `l` | Seek forward by 5 seconds |
47
+ | `key_like` | `space` | Like/unlike |
48
+ | `key_share_select` | `space` | Select friend in share panel. Overrides any other bind while share panel is open |
49
+ | `key_pause` | `p` | Pause/resume current reel |
50
+ | `key_save` | `b` | Save/Unsave (bookmark) current reel |
51
+ | `key_navbar` | `e` | Toggle navbar, a condensed version of the help menu |
52
+ | `key_comments_open` | `c` | Open comments |
53
+ | `key_comments_close` | `C` | Close comments |
54
+ | `key_share_open` | `s` | Open share panel. Allows you to share reels with instagram's suggested top friends. |
55
+ | `key_share_close` | `S` | Close Share panel & sends to friends' DMs (if any are selected) |
56
+ | `key_copy_link` | `y` | Copy reel link to clipboard |
57
+ | `key_mute` | `m` | Mute current reel |
58
+ | `key_vol_up` | `]` | Volume up |
59
+ | `key_vol_down` | `[` | Volume down |
60
+ | `key_reel_size_inc` | `=` | Enlarge video |
61
+ | `key_reel_size_dec` | `-` | Shrink video |
62
+ | `key_help_open` | `?` | Help panel shows the current keybinds |
63
+ | `key_help_close`| `?` | Close help panel |
64
+ | `key_quit` | `q` | Quit |
65
+ | `key_quit` | `ctrl+c` | Quit |
66
+
67
+ All keybinds are configurable in `reels.conf`. Each action supports multiple binds. Open/close pairs (like `key_comments_open` and `key_comments_close`) can be bound to the same key to toggle.
53
68
 
54
69
  ## Supported Platforms
55
70
 
56
71
  | Platform | Package |
57
72
  |----------|---------|
58
73
  | Linux x64 | `@reels/linux-x64` |
74
+ | Linux ARM64 | `@reels/linux-arm64` |
59
75
  | macOS ARM64 | `@reels/darwin-arm64` |
60
76
 
61
77
  ## File Paths
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reels/tui",
3
- "version": "1.2.3",
3
+ "version": "1.2.6",
4
4
  "description": "Instagram reels in the terminal",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -21,7 +21,8 @@
21
21
  "reels": "bin/reels"
22
22
  },
23
23
  "optionalDependencies": {
24
- "@reels/linux-x64": "1.2.3",
25
- "@reels/darwin-arm64": "1.2.3"
24
+ "@reels/linux-x64": "1.2.6",
25
+ "@reels/linux-arm64": "1.2.6",
26
+ "@reels/darwin-arm64": "1.2.6"
26
27
  }
27
28
  }