Skip to content

Commit 1e0ae56

Browse files
committed
Version 1.5.1
1 parent 9744c68 commit 1e0ae56

5 files changed

Lines changed: 25 additions & 7 deletions

File tree

CHANGELOG.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
===Version 1.5.1===
2+
-Added options to modify URL extraction command - "-extractor-max-height", "-extractor-prefix", "-extractor-suffix".
3+
-Fixed URL extraction not being able to extract URLs from most sites other than YouTube.
4+
-Improvements to the "-fc" option.
5+
-Added "Q" as second exit key.
6+
-Added support for Termux.
7+
-Added warning for potential libao issue on Linux.
8+
-Minor fixes.
9+
-Updated to FFmpeg 7.
10+
111
===Version 1.5===
212
-Replaced message with UI when running without any arguments.
313
-Added "--color-proc" option with 3 modes: "both" (default), "char-only" and "none".

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,22 @@ Demonstration: https://www.youtube.com/watch?v=nbUKhalJATk
2020

2121
### Also "Bad Apple!!" in cmd but with FFmpeg filters
2222

23-
```conpl ba.mp4 -vf "curves=m=0/0 .8/.8 1/0" -svf "noise=alls=8:allf=t,rgbashift=rh=-2:bh=2"```
23+
`conpl ba.mp4 -vf "curves=m=0/0 .8/.8 1/0" -svf "noise=alls=8:allf=t,rgbashift=rh=-2:bh=2"`
2424

2525
![Bad Apple!!](screenshots/bad_apple2.png "Bad Apple!!")
2626

2727
### Some random 4K test video with colors in Windows Terminal (https://www.youtube.com/watch?v=xcJtL7QggTI&t=96)
2828

2929
![Colors](screenshots/colors.png "Colors")
3030

31+
### "Bad Apple!!" in "fake console" mode with Windows console raster font in Wine
32+
33+
`wine conpl.exe ba.mp4 -fc -gls :win:type normal :font Terminal 8 12`
34+
35+
It requires of course ConPlayer binaries for Windows. To use "Terminal" you need to also copy Windows 10 or 11 fonts (C:\\Windows\\Fonts) to corresponding location in Wine. It's also possible to use `:enum-fonts` and `:enum-font (font name)` flags to list available fonts.
36+
37+
![wine](screenshots/bad_apple3.png "Wine")
38+
3139
# Options
3240

3341
## Basic options
@@ -145,8 +153,8 @@ Demonstration: https://www.youtube.com/watch?v=nbUKhalJATk
145153
Examples:
146154
conpl $https://www.youtube.com/watch?v=FtutLA63Cp8 -xp "yt-dlpppx --no-warnings --get-url"
147155
-xs Sets extractor command suffix. By default: "2>&1".
148-
Examples:
149-
conpl $https://www.youtube.com/watch?v=FtutLA63Cp8 -xs ""
156+
(--extractor- Examples:
157+
suffix) conpl $https://www.youtube.com/watch?v=FtutLA63Cp8 -xs ""
150158
-pl (--preload) Loads and unload entire input file (in hope that system will cache it into RAM).
151159
-da(--disable-audio)Disables audio.
152160
-dk (--disable-keys)Disables keyboard control.

cp/src/conplayer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Project: ConPlayer
3-
* Version: 1.5
3+
* Version: 1.5.1
44
* Author: https://github.com/mt1006
55
*/
66

@@ -94,7 +94,7 @@
9494
#define CP_CPU "[unknown]"
9595
#endif
9696

97-
#define CP_VERSION "1.5"
97+
#define CP_VERSION "1.5.1"
9898
#define CP_VERSION_STRING "ConPlayer " CP_VERSION " [" CP_CPU "/" CP_OS "]"
9999

100100
#ifdef _WIN32

cp/src/help.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ static void helpAdvancedOptions(void)
170170
" Examples:\n"
171171
" conpl $https://www.youtube.com/watch?v=FtutLA63Cp8 -xp \"yt-dlpppx --no-warnings --get-url\"\n"
172172
" -xs Sets extractor command suffix. By default: \"2>&1\".\n"
173-
" Examples:\n"
174-
" conpl $https://www.youtube.com/watch?v=FtutLA63Cp8 -xs \"\"\n"
173+
" (--extractor- Examples:\n"
174+
" suffix) conpl $https://www.youtube.com/watch?v=FtutLA63Cp8 -xs \"\"\n"
175175
" -pl (--preload) Loads and unload entire input file (in hope that system will cache it into RAM).\n"
176176
" -da(--disable-audio)Disables audio.\n"
177177
" -dk (--disable-keys)Disables keyboard control.\n"

screenshots/bad_apple3.png

36 KB
Loading

0 commit comments

Comments
 (0)