Skip to content

Tag: linux

XML to postscript using xsltproc

I’m trying to produce a postscript file for an XML document. I can produce a plain text or an html output using xsltproc. Is there a way to produce a postscript file from command line or programmatically using C? Answer One possibility to achieve this is converting the XML-file to XSL-FO and then use Ap…

How can I display .xed files in Linux?

Using Microsoft Kinect SDK 1.x, it is possible to record RGB-D video with Kinect Studio, and save those recordings in .xed files. Is there a way to open and view those recordings in a Linux-based distribution, such as Ubuntu? Answer XED files are based on a proprietary format, and up to my knowledge there are…

Linux input driver not working properly

I have written a small linux input driver which reads the state of a gpio. The driver registers OK and also the interrupt gets fired, however the events are not always displayed. Driver runs on Beagleboneblack with Android and kernel version 3.8.13 To test it I do either: cat /dev/input/event2 Or run an user …

Not login to system due to changing permission [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack …

Pause programmatically video player mpv

I would like to know if there is a way to send a message to a running process on linux ? For example, is it possible to programmatically “pause” a video launched with mpv. Answer To control mpv remotely (eg from another terminal session) you can also start it with the option and control it by issu…