mirror of
https://github.com/u2takey/ffmpeg-go.git
synced 2025-10-04 23:52:42 +08:00
Fixed incorrect order of input files
This commit is contained in:
2
node.go
2
node.go
@@ -201,7 +201,7 @@ func (n *Node) __getIncomingEdgeMap() map[Label]NodeInfo {
|
||||
incomingEdgeMap := map[Label]NodeInfo{}
|
||||
streamMap := getStreamMap(n.streamSpec)
|
||||
for i, s := range streamMap {
|
||||
incomingEdgeMap[Label(fmt.Sprintf("%v", i))] = NodeInfo{
|
||||
incomingEdgeMap[Label(fmt.Sprintf("%06v", i))] = NodeInfo{
|
||||
Node: s.Node,
|
||||
Label: s.Label,
|
||||
Selector: s.Selector,
|
||||
|
Reference in New Issue
Block a user