Questions tagged [mplayer]

MPlayer is a free and open source media player.

The program is available for all major operating systems, including Linux and other Unix-like systems, Microsoft Windows and Mac OS X. Versions for OS/2, Syllable, AmigaOS, MorphOS and AROS Research Operating System are also available. A port for DOS using DJGPP is also available.

237 questions
0
votes
2 answers

Cannot execute a command with eval

I have a text file (test.txt) whose contents are: mplayer -fs video.avi -vf mirror If I execute: eval "$(cat test.txt)" I get: doesn't exist.or Error parsing option on the command line: -vf MPlayer 1.1-4.8 (C) 2000-2012 MPlayer Team But if I…
ka3ak
  • 2,435
  • 2
  • 30
  • 57
0
votes
1 answer

Mplayer and pipe streaming

I'd like to use mplayer to play a stream of files via a named pipe. From here I read that MPlayer can read from stdin (not named pipes). named pipes can still be used in a bash script this way: mkfifo pipe cat pipe | mplayer -cache 1024 -cache-min…
Matteo Giani
  • 76
  • 2
  • 7
0
votes
1 answer

mplayer2 license whitelist on yocto

I am using dragonboard 410C + yocto, and I’m trying to build Mplayer2 . mplayer2 refuses to compile due to it’s commercial license: … was skipped: because it has a restricted license not whitelisted in LICENSE_FLAGS_WHITELIST I have already…
Moshe Hoori
  • 11
  • 1
  • 3
0
votes
1 answer

Re-run a running script based on cronjob

I have a script that plays a local video continuously file using mplayer on fullscreen using this command: mplayer -loop 0 -fs /path/to/movie.mp4 However, movie.mp4 is being downloaded from my webserver when its not available. The movie on my server…
Arko Elsenaar
  • 1,689
  • 3
  • 18
  • 33
0
votes
1 answer

mplayer - How can I detect EOF in Python

I have a playlist that changes during play, Mplayer doesn't reload the playlist at the end of the first track so what I need to do is capture the EOF, then reload mplayer to carry on playing. How can I detect EOF using mplayer and popen? Or is there…
northwarks
  • 107
  • 3
  • 15
0
votes
0 answers

Why does mplayer not play my stream?

I wanted to use mplayer (a command line tool) to play a SoundCloud url that I fetched with there official API. The url looks like…
SirWindfield
  • 117
  • 2
  • 8
0
votes
0 answers

How can I splice together two videos (at times/places/size/space/given coordiates)

I'm thinking: some_command -file1 file.flv -appendTo outFile.flv -appendAt 00.00.0 -xy = 0,0 -size=1.0 -TS = 00:00.0 -includeSound where outFile.flv - flv file that is appended to appendAt - a time stamp at this time the outFile.flv file shall…
user1529413
  • 458
  • 8
  • 19
0
votes
1 answer

Mplayer Dump Audio from video, working good only on non C hard drive

I'm using Mplayer to extrac audio from video via command line. This is the command i use: mplayer -ao pcm:fast:file=aaa.wav aaa.avi I copied Mplayer.exe and aaa.avi both on windows drive (C:) and on the root directory of an external hard drive (in…
WizardingStudios
  • 554
  • 2
  • 7
  • 22
0
votes
1 answer

Python Mplayer Script Doesn't Run While Playing

I am very much a noob with Python and Linux commands but I'm trying to wrap my head around it. My application is bigger than this sample but I am trying to get this working before expanding. I am using mplayer in slave mode to play a video clip but…
0
votes
1 answer

How to use CreateProcess or ShellExecute to execute piped commands

I want to execute a few commands piped without new cmd opened (so I can't just use system()) This is the command I try to execute: C:\\openssl.exe enc -aes-128-ofb -d -in C:\\encrypted.bin -iv a2b050be9463 -K 6ba62eb7bb2ccace -nopad |…
JECK IRON
  • 9
  • 4
0
votes
0 answers

MplayerCtrl - MPlayer on Mac with WxPython

I am trying to get a simple media player working (scipt below) on Python 2.7.11, Wxpython, with MplayerCtrl on Mac 10.11.4, I just compiled the latest MPlayer 1.3.0, but when opening an mp4 video file I get the below error message, Mplayer opens…
speedyrazor
  • 3,127
  • 7
  • 33
  • 51
0
votes
1 answer

Run mplayer using subprocess in Python erro

I want to run mplayer using python and here is my code from subprocess import call call (mplayer /root/Desktop/file.mp4) but it is not working I got this error File "two.py", line 8, in call ("mplayer /root/Desktop/file.mp4") File…
user5324426
  • 693
  • 1
  • 5
  • 12
0
votes
0 answers

Mplayer slave mode jpg files slideshow

I am using mplayer in slave mode (VB.NET). I used "-fs -noquiet -identify -slave -nomouseinput -sub-fuzziness 1 -vo direct3d, -ao dsound ". ps = New Process() ps.StartInfo.FileName = "D:\Music\mplayer.exe " …
Blue Phoenix
  • 153
  • 11
0
votes
1 answer

mplayer doesn't like popen suddenly?

Been stumped over a problem with popen for a few days. The code: int main(){ FILE *fp = popen("mplayer /home/linaro/Music/cp.mp3", "r"); char buffer[1028]; while (fgets(buffer, 1028, fp) != NULL) { std::cerr<
M4rc
  • 473
  • 2
  • 13
0
votes
1 answer

writing commands to mplayer subprocess with python 3 in windows

I have a... very specific problem. Really tried to find a broader question but couldn't. I am trying to use mplayer as a subprocess to play music (on windows and also linux), and retain the ability to pass commands to it. I have accomplished this…
Nacht
  • 3,342
  • 4
  • 26
  • 41