Skip to content

Commit 13f58e3

Browse files
author
serverless-devs
committed
commit by Serverless devs docs 4-19-2022 12:45:15
1 parent 22d1932 commit 13f58e3

File tree

4 files changed

+26
-37
lines changed

4 files changed

+26
-37
lines changed

content/zh/fc-faq/FC经典案例.md

Lines changed: 21 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ category: '概述'
66
---
77
# FC 经典解决方案
88

9+
10+
## Application-Awesome Repo 大全
11+
12+
[Application-Awesome](https://github.com/devsapp/Application-Awesome)
13+
914
## 音视频
1015

1116
### 注意事项
@@ -23,14 +28,13 @@ category: '概述'
2328
### ffmpeg 示例集锦
2429

2530
```
26-
s init devsapp/ffmpeg-app -d ffmpeg-app
31+
s init ffmpeg-app -d ffmpeg-app
2732
```
2833

29-
详情见: [ffmpeg-app](https://github.com/devsapp/ffmpeg-app)
34+
详情见: [ffmpeg-app](https://github.com/devsapp/start-ffmpeg/tree/master/ffmpeg-app/src)
3035

3136
- AudioConvert: 音频格式转换器
3237
- GetMediaMeta: 获取音视频 meta
33-
- TranscodeMaster/TranscodeWorker: 功能强大的并行视频转码器
3438
- GetDuration: 获取音视频时长
3539
- VideoGif: 功能强大的 video 提取为 gif 函数
3640
- GetSprites: 功能强大雪碧图制作函数
@@ -40,7 +44,7 @@ s init devsapp/ffmpeg-app -d ffmpeg-app
4044

4145
#### 1. 无编排单个函数直接转
4246

43-
[simple-video-processing](https://github.com/awesome-fc/simple-video-processing)
47+
[video-transcode](https://github.com/devsapp/start-ffmpeg/tree/master/transcode/src)
4448

4549
#### 2. 工作流编排并行加速转
4650

@@ -49,79 +53,68 @@ s init devsapp/ffmpeg-app -d ffmpeg-app
4953
### 全景录制
5054

5155
```
52-
s init devsapp/start-headless-ffmpeg -d start-headless-ffmpeg
56+
s init headless-ffmpeg -d headless-ffmpeg
5357
```
5458

55-
详情见: [start-headless-ffmpeg](https://github.com/devsapp/start-headless-ffmpeg)
59+
详情见: [start-headless-ffmpeg](https://github.com/devsapp/start-ffmpeg/tree/master/headless-ffmpeg/src)
5660

5761
### 视频直播流截图
5862

5963
```
60-
s init devsapp/start-rtmp-snapshot -d start-rtmp-snapshot
64+
s init rtmp-snapshot -d rtmp-snapshot
6165
```
6266

63-
详情见: [start-rtmp-snapshot](https://github.com/devsapp/start-rtmp-snapshot)
67+
详情见: [start-rtmp-snapshot](https://github.com/devsapp/start-ffmpeg/tree/master/rtmp-snapshot/src)
6468

6569
## AI
6670

6771
### 1. pytorch
6872

6973
```
70-
s init devsapp/start-pytorch -d start-pytorch
74+
s init start-pytorch -d start-pytorch
7175
```
7276

73-
详情见: [start-pytorch](https://github.com/devsapp/start-pytorch)
77+
详情见: [start-pytorch](https://github.com/devsapp/start-ai/tree/master/start-pytorch/src)
7478

7579
### 2. tensorflow
7680

7781
```
78-
s init devsapp/start-tensorflow -d start-tensorflow
82+
s init start-tensorflow -d start-tensorflow
7983
```
8084

81-
详情见: [start-tensorflow](https://github.com/devsapp/start-tensorflow)
85+
详情见: [start-tensorflow](https://github.com/devsapp/start-ai/tree/master/start-tensorflow/src)
8286

8387
### 3. OCR
8488

8589
```
86-
s init devsapp/start-ocr -d start-ocr
90+
s init start-ocr -d start-ocr
8791
```
8892

89-
详情见: [start-ocr](https://github.com/devsapp/start-ocr)
93+
详情见: [start-ocr](https://github.com/devsapp/start-ai/tree/master/start-ocr/src)
9094

9195
## 前端领域
9296

93-
### 1. Puppeter 应用示例
94-
95-
```
96-
s init devsapp/start-puppeteer -d start-puppeteer
97-
```
97+
### Puppeter 应用示例
9898

9999
详情见: [puppeter 应用示例](https://github.com/devsapp/start-puppeteer)
100100

101101
提供了两种部署方式, nodejs12 runtime 和 custom container, 建议直接使用 custom container
102102

103-
### 2. SSR 应用示例
104-
105-
```
106-
s init nodejs-nuxt
107-
```
108-
109-
详情见 [nodejs-nuxt-ssr](https://github.com/devsapp/nodejs-nuxt)
110103

111104
## 文档图片转换相关
112105

113106
### 1. 基于 GS 和 GM 的 PDF 转 JPG 实践
114107

115108
```
116-
s init devsapp/start-pdf2img -d start-pdf2img
109+
s init start-pdf2img -d start-pdf2img
117110
```
118111

119112
详情见: [基于 GS 和 GM 的 PDF 转 JPG 实践](https://github.com/devsapp/start-pdf2img)
120113

121114
### 2. 基于 LibreOffice 实现 word 转 pdf
122115

123116
```
124-
s init devsapp/start-word2pdf -d start-word2pdf
117+
s init start-word2pdf -d start-word2pdf
125118
```
126119

127120
详情见: [基于 LibreOffice 实现 word 转 pdf](https://github.com/devsapp/start-word2pdf)
@@ -131,7 +124,3 @@ s init devsapp/start-word2pdf -d start-word2pdf
131124
[fc-decompress-oss](https://github.com/awesome-fc/decompress-oss)
132125

133126
readme 中有详细介绍
134-
135-
## Application-Awesome Repo
136-
137-
[Application-Awesome](https://github.com/devsapp/Application-Awesome)

content/zh/fc-faq/s_fc_cookbook/quick_start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ vars:
5858

5959
services:
6060
fc-function1:
61-
component: devsapp/fc # 组件名称
61+
component: fc # 组件名称
6262
props: # 组件的属性值
6363
region: ${vars.region}
6464
service: ${vars.service}
@@ -72,7 +72,7 @@ services:
7272
timeout: 60
7373

7474
fc-function2:
75-
component: devsapp/fc # 组件名称
75+
component: fc # 组件名称
7676
props: # 组件的属性值
7777
region: ${vars.region}
7878
service: ${vars.service}

content/zh/fc-faq/使用s工具实现函数多region部署.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ vars:
4242

4343
services:
4444
test:
45-
component: devsapp/fc # 组件名称
45+
component: fc # 组件名称
4646
props: # 组件的属性值
4747
region: ${vars.region}
4848
service: ${vars.service}

content/zh/fc-faq/大代码包部署的实践案例.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ name: fcDeployApp # 项目名称
4949
access: "default" # 秘钥别名
5050
services:
5151
fc-deploy-test: # 服务名称
52-
component: devsapp/fc # 组件名称
52+
component: fc # 组件名称
5353
props: # 组件的属性值
5454
region: cn-hangzhou
5555
service:
@@ -299,7 +299,7 @@ vars:
299299
region: cn-hangzhou
300300
services:
301301
customContainer-demo:
302-
component: devsapp/fc
302+
component: fc
303303
props:
304304
region: ${vars.region}
305305
service:

0 commit comments

Comments
 (0)