Skip to content

Commit ff9a779

Browse files
committed
- [#] update README.end.e.md
1 parent 8dd2969 commit ff9a779

3 files changed

Lines changed: 14 additions & 15 deletions

File tree

README.e.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,3 @@ Please check them out in the [wiki](https://github.com/suntong/ffcvt/wiki/), and
112112
As suggested before, don't use `avconv`, use `ffmpeg` instead (the `avconv` fork was more for political reasons. I personally believe `ffmpeg` is technically superior although might not be politically).
113113

114114
As for video/movie play back, use [mpv](http://mpv.io/). It is a fork of mplayer2 and MPlayer, and is a true *modern* *all-in-one* movie player that can play ANYTHING, and one of the few movie players being actively developed all the time. Download link is in [mpv.io](http://mpv.io/), from which Ubuntu repo I get my Ubuntu `ffmpeg` package as well. If you are unsatisfied with mpv's simple user interface, check out https://wiki.archlinux.org/index.php/Mpv#Front_ends.
115-
116-
### Install Debian/Ubuntu package
117-
118-
apt install {{.Name}}

README.end.e.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
## Install Debian/Ubuntu package
3+
4+
sudo apt install -y {{.Name}}
5+
26
## Download/install binaries
37

48
- The latest binary executables are available
@@ -47,18 +51,18 @@ curl -1sLf \
4751

4852
# That's it. You then can do your normal operations, like
4953

50-
sudo apt-get update
54+
sudo apt update
5155
apt-cache policy {{.Name}}
5256

53-
sudo apt-get install -y {{.Name}}
57+
sudo apt install -y {{.Name}}
5458
```
5559

5660
## Install Source
5761

5862
To install the source code instead:
5963

6064
```
61-
go get -v -u {{.ProjectURL}}
65+
go install {{.ProjectURL}}@latest
6266
```
6367

6468
## Author

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ using ffmpeg.
3030
- [Environment Variables](#environment-variables)
3131
- [Encoding Help](#encoding-help)
3232
- [Tools Choices](#tools-choices)
33-
- [Install Debian/Ubuntu package](#install-debianubuntu-package)
3433
- [Install Debian/Ubuntu package](#install-debianubuntu-package)
3534
- [Download/install binaries](#downloadinstall-binaries)
3635
- [The binary executables](#the-binary-executables)
@@ -120,10 +119,10 @@ There is a quick usage help that comes with `ffcvt`, produced when it is invoked
120119
$ ffcvt -version
121120
ffcvt version 1.9.0 built on 2023-03-16
122121

123-
ffmpeg version 4.3.3-0+deb11u1 Copyright (c) 2000-2021 the FFmpeg developers
122+
ffmpeg version 4.3.5-0+deb11u1 Copyright (c) 2000-2022 the FFmpeg developers
124123
built with gcc 10 (Debian 10.2.1-6)
125124

126-
ffprobe version 4.3.3-0+deb11u1 Copyright (c) 2007-2021 the FFmpeg developers
125+
ffprobe version 4.3.5-0+deb11u1 Copyright (c) 2007-2022 the FFmpeg developers
127126
built with gcc 10 (Debian 10.2.1-6)
128127
```
129128

@@ -295,9 +294,9 @@ As suggested before, don't use `avconv`, use `ffmpeg` instead (the `avconv` fork
295294

296295
As for video/movie play back, use [mpv](http://mpv.io/). It is a fork of mplayer2 and MPlayer, and is a true *modern* *all-in-one* movie player that can play ANYTHING, and one of the few movie players being actively developed all the time. Download link is in [mpv.io](http://mpv.io/), from which Ubuntu repo I get my Ubuntu `ffmpeg` package as well. If you are unsatisfied with mpv's simple user interface, check out https://wiki.archlinux.org/index.php/Mpv#Front_ends.
297296

298-
### Install Debian/Ubuntu package
297+
## Install Debian/Ubuntu package
299298

300-
apt install ffcvt
299+
sudo apt install -y ffcvt
301300

302301
## Download/install binaries
303302

@@ -347,18 +346,18 @@ curl -1sLf \
347346

348347
# That's it. You then can do your normal operations, like
349348

350-
sudo apt-get update
349+
sudo apt update
351350
apt-cache policy ffcvt
352351

353-
sudo apt-get install -y ffcvt
352+
sudo apt install -y ffcvt
354353
```
355354

356355
## Install Source
357356

358357
To install the source code instead:
359358

360359
```
361-
go get -v -u github.com/suntong/ffcvt
360+
go install github.com/suntong/ffcvt@latest
362361
```
363362

364363
## Author

0 commit comments

Comments
 (0)