Mplayer: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
potentionally interesting is the "EDL" feature of mplayer -- it lets you specify time ranges the player should skip (not show -- it's actually designed as a tool to censor)[[BR]]
{{Software
|Website=http://www.mplayerhq.hu/
|License=LGPL, GPL
|OS=GNU/Linux, OS X, Windows
|Media=Video player
|Format=MP4, OGG, MP3, MP4
|Interface=Command-line interface, GUI,
|Wikipedia=http://en.wikipedia.org/wiki/MPlayer
|Thumbnail=File:MPlayer.svg
}}
Command-line media player
 
Potentionally interesting is the "EDL" feature of mplayer -- it lets you specify time ranges the player should skip (not show -- it's actually designed as a tool to censor)
 
http://www.oreillynet.com/sysadmin/blog/2005/06/make_your_own_phantom_edit_wit.html
http://www.oreillynet.com/sysadmin/blog/2005/06/make_your_own_phantom_edit_wit.html


Line 10: Line 23:
mplayer -fs -vf expand=:-500::0:1 -sub $SUB -subfont-text-scale 2 -subpos 80 $SRC
mplayer -fs -vf expand=:-500::0:1 -sub $SUB -subfont-text-scale 2 -subpos 80 $SRC
</source>
</source>
* [http://code.activestate.com/recipes/542195/ Thin Python Mplayer/Slave-mode wrapper]

Latest revision as of 16:08, 1 October 2013

Website http://www.mplayerhq.hu/
License LGPL, GPL
OS GNU/Linux, OS X, Windows
Media Video player
Format MP4, OGG, MP3, MP4
Interface Command-line interface, GUI,
Wikipedia http://en.wikipedia.org/wiki/MPlayer
Thumbnail

Command-line media player

Potentionally interesting is the "EDL" feature of mplayer -- it lets you specify time ranges the player should skip (not show -- it's actually designed as a tool to censor)

http://www.oreillynet.com/sysadmin/blog/2005/06/make_your_own_phantom_edit_wit.html


Mplayer with extra space for subtitles (from Linda)

SUB=/home/murtaugh/Documents/opensourcevideo/rearwindow_es.srt
SRC=/home/murtaugh/Videos/personalchef.ogg
mplayer -fs -vf expand=:-500::0:1 -sub $SUB -subfont-text-scale 2 -subpos 80 $SRC