我的项目使用Eclipse在OSX 10.8.5上使用Processing core jar和GSVideo库。
我无法获得GSVideo跳转(int frame)或跳转(浮动时间)来实际重绘下一帧。当我在下面的示例程序中反复按RIGHT以前进帧时,显示的图像在帧之间来回切换。因为下面的示例适用于* .mov,但不适用于* .mpg视频,我想问一下gstreamer在MPEG2视频中推进帧是否存在任何已知问题。或者也许有些东西与java-gstreamer或GSVideo有关?
我正在使用MPEG2格式的视频..而播放和暂停MPEG2没有问题。似乎movie.jump(frameNum或time)函数不起作用。我开始寻找使用playbin2的搜索方法进行帧步进的示例。
以下是有关我试图跳转的视频的信息。
stream 0:type:CODEC_TYPE_VIDEO;编解码器:CODEC_ID_MPEG2VIDEO;持续时间:7717710;开始时间:433367;时基:1/90000;编码器tb:1001/60000; 宽度:1920;身高:1080;格式:YUV420P;帧率:29.97;
示例代码。
import processing.core.*;
import codeanticode.gsvideo.*;
public class FramesTest extends PApplet {
GSPlayer player;
GSMovie movie;
int newFrame = 0;
PFont font;
public void setup() {
size(320, 240);
background(0);
//movie = new GSMovie(this, "station.mov"); // sample works
movie = new GSMovie(this, "myMovie.mpg"); // mpg does not
movie.play();
movie.goToBeginning();
movie.pause();
textSize(24);
}
public void movieEvent(GSMovie movie) {
System.out.println("movie"+ movie.frame());
movie.read();
}
public void draw() {
image(movie, 0, 0, width, height);
fill(240, 20, 30);
text(movie.frame() + " / " + (movie.length() - 1), 10, 30);
}
public void keyPressed() {
if (movie.isSeeking()) return;
if (key == CODED) {
if (keyCode == LEFT) {
if (0 < newFrame) newFrame--;
} else if (keyCode == RIGHT) {
if (newFrame < movie.length() - 1) newFrame++;
}
}
movie.play();
movie.jump(newFrame);
movie.pause();
if (movie.available()){
System.out.println(movie.frame());
movie.read();
}
System.out.println(newFrame);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
PApplet.main(new String[] { FramesTest.class.getName() }); //
}
}
示例代码是从这里拉出来的...... http://gsvideo.sourceforge.net/examples/Movie/Frames/Frames.pde
我在互联网上搜索了几天,这也试图联系这个论坛...... https://sourceforge.net/projects/gsvideo/forums
这篇文章看起来很相似,但我的问题不在于播放(没关系)。我不能跳到特定的框架...... GStreamer: Play mpeg2
非常感谢SO社区提供的任何帮助。
更新: 要解决MPEG2压缩问题(由下面的v.k.描述),我正在尝试创建一个gstreamer管道,使用GSVideo Pipeline或java-gstreamer对mp4进行动态转码。以下命令适用于Ubuntu。
gst-launch-0.10 filesrc location=myMpeg2Video.mpg ! mpegdemux name=demux demux.video_00 ! ffdec_mpeg2video ! queue ! x264enc ! ffdec_h264 ! xvimagesink
但是以下GSVideo Pipeline显示一个空的灰色窗口:(
pipeline = new GSPipeline(this, "filesrc location=file:/path/movie.mpg ! mpegdemux name=demux demux.video_00 ! ffdec_mpeg2video");
pipeline.play();
答案 0 :(得分:0)
作为v.k.指出,寻求一般不准确。
需要注意的一件重要事情是gsvideo的开发基本停止了。它的主要元素被移植到Processing 2.0中的内置视频库。我在内置视频中做了一些工作以尝试改进搜索,并且示例帧中的帧|视频|电影显示了如何(尝试)通过指示时间值跳转到特定帧。也许这对你的情况有帮助吗?
另外,如果您在上一篇文章中找到了更准确的搜索方式,我可以将其包含在视频库中。