Skip to content

Commit

Permalink
Add new comment
Browse files Browse the repository at this point in the history
  • Loading branch information
junxnone committed Jul 22, 2023
1 parent 6d60956 commit 4eb2b5d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 21 deletions.
19 changes: 12 additions & 7 deletions docs/0002_Tools_Media_ffmpeg.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,13 @@
Title | Tools Media ffmpeg
-- | --
Created @ | `2022-08-23T03:37:05Z`
Last Modify @| `2022-12-21T15:05:29Z`
Updated @| `2023-07-22T15:16:53Z`
Labels | ``
Edit @| [here](https://github.com/junxnone/linux/issues/2)

---
# ffmpeg 多媒体工具

## Reference
- [Remove sequentially duplicate frames when using FFmpeg](https://stackoverflow.com/questions/37088517/remove-sequentially-duplicate-frames-when-using-ffmpeg)
- [ffmpeg音视频加速](https://www.jianshu.com/p/ea4af542df6a)

## Brief


## UseCase

Expand Down Expand Up @@ -56,4 +50,15 @@ ffmpeg -i input.mp4 -ss 00:10:03 -t 00:03:00 -vcodec copy -acodec copy output.mp
```
- `-ss` 开始时间戳
- `-t` 长度

### 截取图片

```
ffmpeg -i input.mp4 -ss 00:00:30 -vframe 1 ouput.jpg -an -vcodec mjpeg
```


## Reference
- [Remove sequentially duplicate frames when using FFmpeg](https://stackoverflow.com/questions/37088517/remove-sequentially-duplicate-frames-when-using-ffmpeg)
- [ffmpeg音视频加速](https://www.jianshu.com/p/ea4af542df6a)

30 changes: 16 additions & 14 deletions docs/bk/0002_Tools_Media_ffmpeg.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,16 @@
-----

| Title | Tools Media ffmpeg |
| ------------- | -------------------------------------------------- |
| Created @ | `2022-08-23T03:37:05Z` |
| Last Modify @ | `2022-12-21T15:05:29Z` |
| Labels | \`\` |
| Edit @ | [here](https://github.com/junxnone/linux/issues/2) |
| Title | Tools Media ffmpeg |
| --------- | -------------------------------------------------- |
| Created @ | `2022-08-23T03:37:05Z` |
| Updated @ | `2023-07-22T15:16:53Z` |
| Labels | \`\` |
| Edit @ | [here](https://github.com/junxnone/linux/issues/2) |

-----

# ffmpeg 多媒体工具

## Reference

- [Remove sequentially duplicate frames when using
FFmpeg](https://stackoverflow.com/questions/37088517/remove-sequentially-duplicate-frames-when-using-ffmpeg)
- [ffmpeg音视频加速](https://www.jianshu.com/p/ea4af542df6a)

## Brief

## UseCase

### 录制桌面
Expand All @@ -45,3 +37,13 @@

- `-ss` 开始时间戳
- `-t` 长度

### 截取图片

ffmpeg -i input.mp4 -ss 00:00:30 -vframe 1 ouput.jpg -an -vcodec mjpeg

## Reference

- [Remove sequentially duplicate frames when using
FFmpeg](https://stackoverflow.com/questions/37088517/remove-sequentially-duplicate-frames-when-using-ffmpeg)
- [ffmpeg音视频加速](https://www.jianshu.com/p/ea4af542df6a)

0 comments on commit 4eb2b5d

Please sign in to comment.