Skip to content

Commit 79deecd

Browse files
committed
Add get command and play toggle
Introduce a new `get <input>` command as a probe-equivalent alias and extend `play` with `--no-external-app` while honoring library defaults. Also align extract-audio defaults with `AudioExtractOptions.defaults()` instead of hardcoded values. Update CLI usage and Javadocs to document supported commands and option behavior, and refresh project metadata for the GitHub migration. Bump project and core dependency versions to 1.1.0.
1 parent be92836 commit 79deecd

3 files changed

Lines changed: 278 additions & 25 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ Command-line interface for CodecMedia, providing media probing, validation, side
66

77
Core library: **codecmedia**
88
Website: https://codecmedia.tamkungz.me/
9-
Repository: https://github.com/TamKungZ/codecmedia-java
9+
Repository: https://github.com/CodecMediaLib/codecmedia-java
1010

1111
## Project repository
1212

13-
GitLab: https://gitlab.com/TamKungZ/codecmedia-cli
13+
GitHub: https://github.com/CodecMediaLib/codecmedia-cli
14+
SSH: git@github.com:CodecMediaLib/codecmedia-cli.git
1415

1516
## Build
1617

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>me.tamkungz.codecmedia</groupId>
99
<artifactId>codecmedia-cli</artifactId>
10-
<version>1.0.3</version>
10+
<version>1.1.0</version>
1111
<packaging>jar</packaging>
1212

1313
<name>CodecMedia CLI</name>
@@ -19,20 +19,20 @@
1919
<url>https://codecmedia.tamkungz.me/</url>
2020

2121
<organization>
22-
<name>TamKungZ_</name>
23-
<url>https://www.tamkungz.me/</url>
22+
<name>CodecMediaLib</name>
23+
<url>https://github.com/CodecMediaLib</url>
2424
</organization>
2525

2626
<inceptionYear>2026</inceptionYear>
2727

2828
<issueManagement>
29-
<system>GitLab Issues</system>
30-
<url>https://gitlab.com/TamKungZ/codecmedia-cli/-/issues</url>
29+
<system>GitHub Issues</system>
30+
<url>https://github.com/CodecMediaLib/codecmedia-cli/issues</url>
3131
</issueManagement>
3232

3333
<ciManagement>
34-
<system>GitLab CI</system>
35-
<url>https://gitlab.com/TamKungZ/codecmedia-cli/-/pipelines</url>
34+
<system>GitHub Actions</system>
35+
<url>https://github.com/CodecMediaLib/codecmedia-cli/actions</url>
3636
</ciManagement>
3737

3838
<licenses>
@@ -58,9 +58,9 @@
5858
</developers>
5959

6060
<scm>
61-
<connection>scm:git:git://gitlab.com/TamKungZ/codecmedia-cli.git</connection>
62-
<developerConnection>scm:git:ssh://git@gitlab.com/TamKungZ/codecmedia-cli.git</developerConnection>
63-
<url>https://gitlab.com/TamKungZ/codecmedia-cli</url>
61+
<connection>scm:git:git://github.com/CodecMediaLib/codecmedia-cli.git</connection>
62+
<developerConnection>scm:git:ssh://github.com:CodecMediaLib/codecmedia-cli.git</developerConnection>
63+
<url>https://github.com/CodecMediaLib/codecmedia-cli</url>
6464
</scm>
6565

6666
<distributionManagement>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>me.tamkungz.codecmedia</groupId>
9292
<artifactId>codecmedia</artifactId>
93-
<version>1.0.2</version>
93+
<version>1.1.0</version>
9494
</dependency>
9595

9696
<dependency>

0 commit comments

Comments
 (0)