mayfrost-guides

mirror of https://github.com/mayfrost/guides
Log | Files | Refs | README | LICENSE

VIDEO.md (680B)


      1 ## MPLAYER ON THE TTY (FRAMEBUFFER)
      2 These are settings for your MPlayer config file. 
      3 ```  
      4 # framebuffer video ouput
      5 vo=fbdev
      6 # alsa device
      7 ao=alsa:device=hw=0.0
      8 # required to adjust screen without problem
      9 fs=1
     10 # fill screen
     11 zoom = 1
     12 # scale up or down as needed to framebuffer's width; it'll scale the height automatically
     13 # high res
     14 #xy = 1920
     15 # low res
     16 xy = 1420
     17 # buffers x amount of data before playback starts
     18 cache=8192
     19 cache-min=99
     20 # sync video and audio
     21 mc=2
     22 # smooth video play
     23 sws=0
     24 # optional accelaration
     25 lavdopts=fast=1:skiploopfilter=all:threads=16
     26 framedrop=1
     27 # avoid the lirc error message
     28 nolirc=yes
     29 # don't clutter the console with output
     30 really-quiet=1  
     31 ```