Skip to content

Commit 9fad055

Browse files
Core Moduels
1 parent ef9b155 commit 9fad055

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

ascii_play/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""ascii_play — live terminal video player with true 24-bit color rendering."""
22

33
__version__ = "0.1.0"
4-
__author__ = "your name"
4+
__author__ = "JVSCHANDRADITHYA"
55

66
from .player import play
77
from .renderers import MODES

ascii_play/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
"""
2-
Allows running as:
32
python -m ascii_play video.mp4
43
python -m ascii_play play video.mp4 -m braille
54
"""

ascii_play/ansi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
ascii_play.ansi
3-
~~~~~~~~~~~~~~~
2+
ascii_play.ansi module for conversion of RGB to AnSi values..COlored
3+
44
ANSI/VT100 escape sequence helpers.
55
All functions return strings — callers write them to stdout.
66
"""

ascii_play/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#!/usr/bin/env python3
22
"""
33
cli.py — buddy
4-
~~~~~~~~~~~~~~
5-
Entry point. Run directly:
4+
5+
Entry point. for cli tool Run directly:
66
77
python cli.py video.mp4
88
python cli.py play video.mp4 -m braille -q 3
99
python cli.py modes
1010
python cli.py help
1111
1212
Or via wrapper scripts:
13-
buddy video.mp4
13+
buddy video.mp4 / this is after running either pip install -e or setup.sh/.bat
1414
"""
1515

1616
import sys

ascii_play/player.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
ascii_play.player
3-
~~~~~~~~~~~~~~~~~
3+
4+
45
Video decode + render loop.
56
"""
67

ascii_play/renderers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
ascii_play.renderers
3-
~~~~~~~~~~~~~~~~~~~~
4-
Frame → ANSI string renderers.
3+
4+
Frame TO Ansi string renderers.
55
66
Each renderer signature:
77
fn(frame: np.ndarray, cols: int, rows: int, quality: int) -> str

0 commit comments

Comments
 (0)