improve RECORDING-NEW-FILE-NAME
With the new file endings, we need to split file names at #\. and pick up the beginning (e.g. 1031_20210405000300) and add ending (e.g. h264.ts) but drop any middle parts.
This commit is contained in:
parent
bbb8b1a094
commit
23d4e73ed6
@ -298,10 +298,9 @@
|
||||
|
||||
|
||||
(define (recording-new-file-name file-name ending)
|
||||
(let* ((old-ending (substring file-name (- (string-length file-name) 3)))
|
||||
(n (- (string-length file-name) (if (string=? old-ending ".ts") 3 4))))
|
||||
(simple-format #f "~a.~a" (substring file-name 0 n) ending)))
|
||||
|
||||
(let* ((base+exts (string-split file-name #\.))
|
||||
(base (car base+exts)))
|
||||
(simple-format #f "~a.~a" base ending)))
|
||||
(define* (create-record-data-for-transcode rec)
|
||||
(let* ((rtn-list '())
|
||||
(tr-rec rec)
|
||||
|
Loading…
Reference in New Issue
Block a user