Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
付智勇
/
koa2_Sequelize_project
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
付智勇
7 years ago
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4334e0e00e23a4ed28e9b58465b775b10c820aa2
4334e0e0
1 parent
11fb63e1
no message
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
13 行增加
和
9 行删除
services/recordInfoService.js
services/recordInfoService.js
查看文件 @
4334e0e
...
...
@@ -47,25 +47,29 @@ recordInfoService.prototype.tencentRecordInfo = async(channelId)=>{
recordInfoService
.
prototype
.
getRecordFileURL
=
async
(
path
,
time
)
=>
{
try
{
let
onlinePath
=
'/netWorkSchool/Agora_Recording_SDK_for_Linux_FULL/samples/'
//let onlinePath = '/Users/fzy/Downloads/Agora_Recording_SDK_for_Linux_FULL/samples/'
//let onlinePath = '/netWorkSchool/Agora_Recording_SDK_for_Linux_FULL/samples/'
let
onlinePath
=
'/Users/fzy/Downloads/Agora_Recording_SDK_for_Linux_FULL/samples/'
var
backFile
=
[];
var
fileU
let
addrecord
=
await
recordInfo
.
findAll
({
where
:{
channel
:
path
}});
console
.
log
(
'录制文件'
,
addrecord
)
let
noFile
=
[];
var
allFile
=
[];
var
channefiles
=
[];
addrecord
.
forEach
(
function
(
record
,
top
){
let
date1
=
moment
(
Number
(
record
.
createTime
)).
format
(
'YYYYMMDD'
)
let
date2
=
moment
(
Number
(
record
.
createTime
)
-
8
*
60
*
60
*
1000
).
format
(
'YYYYMMDDhhmmss'
)
let
channeFile
=
onlinePath
+
date1
;
var
fschannefiles
=
fs
.
readdirSync
(
channeFile
);
if
(
top
==
1
){
channefiles
=
fschannefiles
;
}
fschannefiles
.
forEach
(
function
(
cfile
,
index
){
if
(
record
.
channel
==
cfile
.
split
(
'_'
)[
0
]
+
'_'
+
cfile
.
split
(
"_"
)[
1
]){
let
pathURL
=
onlinePath
+
date1
+
"/"
+
cfile
;
let
files
=
fs
.
readdirSync
(
pathURL
);
if
(
top
==
1
){
allFile
.
push
(
files
)
;
allFile
=
files
;
}
files
.
forEach
(
function
(
file
){
let
type
=
file
.
split
(
'.'
);
...
...
@@ -74,11 +78,11 @@ recordInfoService.prototype.getRecordFileURL = async(path,time)=>{
}
else
{
let
noFile
=
[];
let
fileN
=
type
[
0
].
split
(
'_'
);
console
.
log
(
'++++++++========='
,
fileN
[
1
])
console
.
log
(
moment
(
fileN
[
1
],
"YYYYMMDDhhmmss"
).
format
(
"X"
),
record
.
createTime
)
console
.
log
(
date2
,
record
.
status
)
console
.
log
(
record
.
id
);
console
.
log
(
fileN
[
1
].
slice
(
0
,
fileN
[
1
].
length
-
3
),
date2
==
fileN
[
1
].
slice
(
0
,
fileN
[
1
].
length
-
3
))
// console.log('++++++++=========',fileN[1])
// console.log(moment(fileN[1], "YYYYMMDDhhmmss").format("X"),record.createTime)
// console.log(date2,record.status)
// console.log(record.id);
// console.log(fileN[1].slice(0,fileN[1].length-3),date2==fileN[1].slice(0,fileN[1].length-3))
if
(
date2
==
fileN
[
1
].
slice
(
0
,
fileN
[
1
].
length
-
3
)){
backFile
.
push
({
channel
:
record
.
channel
,
...
...
@@ -117,7 +121,7 @@ recordInfoService.prototype.getRecordFileURL = async(path,time)=>{
// createTime:record.createTime,
// fileUrl:applacation.recordPath+date1+'/'+cfile+'/'+minFile
// })
return
{
backFile
:
backFile
,
fschannefiles
:
allFile
}
return
{
backFile
:
backFile
,
fschannefiles
:
allFile
,
channefiles
:
channefiles
}
}
catch
(
error
)
{
throw
error
;
}
...
...
请
注册
或
登录
后发表评论