执行以下命令时,
gst-launch-1.0 filesrc location = Wildlife.wmv! decodebin!排队! ffmpegcolorspace! autovideosink dec。 !排队! audioconvert!听觉样本! autoaudiosink
我得到如下错误。
@keyframes scale-x-zero-to-max {
0% {
transform: scaleX(0);
}
100% {
transform: scaleX(1);
}
}
.slick-slide {
&:after {
background: blue;
display: block;
content: "";
width: 100%;
height: .25rem;
position: absolute;
left: 0;
bottom: 0;
z-index: 99;
transform: scaleX(0);
transform-origin: left 50%;
}
&.slick-active:after {
animation: scale-x-zero-to-max 6s linear .8s 1 forwards; // Note that 6s should be same as Slick's autoplaySpeed and .8s same as speed
}
}
这里有什么问题?
答案 0 :(得分:9)
一些事情:
在gstreamer-1.0中,ffmpegcolorspace
已重命名为videoconvert
。
您需要在稍后为您的decodebin提供您想要引用它的名称。添加name=dec
以便在链接音频分支时引用它。
另外,如果您只是需要播放,可能需要考虑使用playbin
。它将为您组装管道,并将自动支持多种格式。