summaryrefslogtreecommitdiff
path: root/gtk2_ardour/video_timeline.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-03-15 02:09:04 +0100
committerRobin Gareus <robin@gareus.org>2013-03-15 02:09:04 +0100
commitf0bb986b33519f3dd00db0110147024d72f86a62 (patch)
tree4da07b2dee26beec974ca3b7878047bdacf6f2e4 /gtk2_ardour/video_timeline.cc
parent333279ccf82d3bdf3c89073799e3e636a623ea98 (diff)
vtl: print (debug) messages if xjadeo is not available
Diffstat (limited to 'gtk2_ardour/video_timeline.cc')
-rw-r--r--gtk2_ardour/video_timeline.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/gtk2_ardour/video_timeline.cc b/gtk2_ardour/video_timeline.cc
index 09301bdcec..3bcb397b68 100644
--- a/gtk2_ardour/video_timeline.cc
+++ b/gtk2_ardour/video_timeline.cc
@@ -521,7 +521,11 @@ VideoTimeLine::video_file_info (std::string filename, bool local)
vmonitor->open(video_filename);
}
} else if (!local_file) {
+#if 1 /* temp debug/devel message */
+ // TODO - call xjremote remotely.
+ printf("the given video file can not be accessed on localhost, video monitoring is not currently supported for this case\n");
GuiUpdate("set-xjadeo-sensitive-off");
+#endif
}
VtlUpdate();
return true;
@@ -650,6 +654,10 @@ VideoTimeLine::find_xjadeo () {
}
else {
_xjadeo_bin = X_("");
+ warning << _("Video-monitor 'xjadeo' was not found. Please install http://xjadeo.sf.net/ "
+ "(a custom path to xjadeo can be specified by setting the XJREMOTE environment variable. "
+ "It should point to an application compatible with xjadeo's remote-control interface 'xjremote').")
+ << endmsg;
}
}