File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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".
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 11/*
22* Project: ConPlayer
3- * Version: 1.5
3+ * Version: 1.5.1
44* Author: https://github.com/mt1006
55*/
66
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
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments