Difference between revisions of "Little Gems"

From MythTV Official Wiki
Jump to: navigation, search
(Changed link from external apache doco to internal mythwiki page)
m
 
(16 intermediate revisions by 13 users not shown)
Line 1: Line 1:
 +
{{Cleanup}}
 +
 
Here are some little gems that help when using MythTV.
 
Here are some little gems that help when using MythTV.
  
=HTML=
+
==HTML==
  
* Did you know that your backend (0.14+) gives a nice HTML output? Try http://yourmythttvbox:6544/
+
* Did you know that your [[mythbackend]] (0.14+) gives a nice HTML output? Try http://yourmythttvbox:6544/
  
 
==MythWeb==
 
==MythWeb==
  
* Want password authentication to [[MythWeb]]? Check out the [[Securing MythWeb]] page for step by step advice on how to do it!
+
* Want password authentication to [[MythWeb]]? Check out the [[Securing MythWeb]] page for step by step advice on how to do it! In 0.19+, this functionality is built in, see .htaccess file for details
  
=Myth Commands/tools=
+
==Myth Commands/tools==
  
 
* Did you know that the MythTV source tarball contains a contrib/ directory with lots of little tools for all sorts of things?
 
* Did you know that the MythTV source tarball contains a contrib/ directory with lots of little tools for all sorts of things?
  
==mythtvosd==
+
==Display==
  
mythtvosd is a program which lets you display *anything* you want as an on screen display.  This is useful for notifying you of mail, caller id, or anything you want! ''mythtvosd'' can be called using one of a series of built-in OSD templates:
+
* Did you know that you can enable antialiasing by executing '<code><nowiki>export QT_XFT=1</nowiki></code>' before starting [[mythfrontend]]? ([http://gossamer-threads.com/lists/mythtv/dev/4684 ref.])
 
 
- '''alert''' : displays a popup in the upper-right corner with a specified message. Use --alert_text="''your message''" command line switch.
 
 
 
- '''scroller''' : displays a scrolling message across the bottom of the screen. Use --scroll_text="''your message''" command line switch.
 
 
 
- '''cid''' : displays a caller-id formatted message, including calling phone number, name, time, etc. Use --caller_name="''name''", --caller_number="''number''", --caller_date="''date''" on the command line.
 
 
 
For example, to display a scrolling message across the screen, use:
 
mythtvosd --template=scroller --scroll_text="New mail has arrived."
 
 
 
=Display=
 
 
 
* Did you know that you can enable antialiasing by executing '<code><nowiki>export QT_XFT=1</nowiki></code>' before starting [[MythFrontend]]? ([http://gossamer-threads.com/lists/mythtv/dev/4684 ref.])
 
 
This will give you nice smooth fonts
 
This will give you nice smooth fonts
  
* Did you know that you can disable the XV acceleration (so you can take screenshots) by executing '<code><nowiki>export NO_XV=1</nowiki></code>' before starting [[MythFrontend]]?
+
* Did you know that you can disable the XV acceleration (so you can take screenshots) by executing '<code><nowiki>export NO_XV=1</nowiki></code>' before starting [[mythfrontend]]?
  
=Video=
+
==Video==
  
 
* Did you know you can export the nuv file to vcd, xvid, avi, other?
 
* Did you know you can export the nuv file to vcd, xvid, avi, other?
Check out [http://extras.mythtvtalk.com nuv2disk] or [http://forevermore.net/mythtv/ nuvexport]
+
Check out [http://www.mythtvtalk.com/nuv2disc/ nuv2disk] or [http://forevermore.net/mythtv/ nuvexport]
  
 
* Did you know you can merge two MPG files together?
 
* Did you know you can merge two MPG files together?
Line 45: Line 34:
 
  avimerge -o "name of the new.avi" -i cd1.avi cd2.avi cd3.avi
 
  avimerge -o "name of the new.avi" -i cd1.avi cd2.avi cd3.avi
  
=Misc=
+
==Misc==
  
* Did you know that you can record a program in LiveTV by pressing RECORD which has a default keybinding of 'R'? The recording starts at the time you press the key. ''No'' data is copied from the LiveTV buffer. This will (hopefully) be resolved within the next few releases, as it is a much-requested feature. Be patient.
+
* Did you know that you can record a program in LiveTV by pressing RECORD which has a default keybinding of 'R'? The recording will start at the beginning of the program or the beginning of the stream, whichever is most recent (In versions prior to 0.19, recording started when you hit 'R', and no data is copied from the LiveTV buffer)
  
 
* Did you know that playback and recording can be filtered on a per channel basis?  See [[Filter Instructions]].
 
* Did you know that playback and recording can be filtered on a per channel basis?  See [[Filter Instructions]].
  
* Did you know that if you messed up the keybindings beyond recognition, you can execute the following (when using MySQL)
+
* Did you know that if you messed up the keybindings beyond recognition, you can reset them by going to Setup|Edit Keys, pressing MENU (M), and then selecting, "Reset All Keys to Defaults."
echo "delete from keybindings ;" | mysql -u mythtv -pmythtv mythconverg
+
 
 +
* Did you know that the key names can be found from the Qt's src/kernel/qkeysequence.cpp file. For example, you can add Volume Up, Volume Down and Volume Mute to the list of keys that control the respective actions.
  
 
* Did you know that if you put *.png,*.jpg,*.jpeg or *.gif image files into your music folder, [[MythMusic]] will pick a random one when it plays from that folder and you're using the [[Album Art]] visualization.
 
* Did you know that if you put *.png,*.jpg,*.jpeg or *.gif image files into your music folder, [[MythMusic]] will pick a random one when it plays from that folder and you're using the [[Album Art]] visualization.
Line 58: Line 48:
 
* Did you know that pressing 'd' in the profile-group menu lets you delete profile groups? (0.15+)  (Is this still true? Doesn't seem to work in [[Knopp Myth]] 5A15.)
 
* Did you know that pressing 'd' in the profile-group menu lets you delete profile groups? (0.15+)  (Is this still true? Doesn't seem to work in [[Knopp Myth]] 5A15.)
  
* If you are having font related problems such as menu fonts not appearing a readable size, try installing the truetype Windows fonts using your distributions font installer.
+
* If you are having font related problems such as menu fonts not appearing a readable size, try installing the truetype Windows fonts using your distributions font installer. (was this ever the proper way to solve font size issues?)
 +
 
 +
[[Category:Knowledge Base]]

Latest revision as of 00:52, 15 March 2012

Clean.png Cleanup: This article or section may require cleanup. Discuss the issue on the talk page

Here are some little gems that help when using MythTV.

HTML

MythWeb

  • Want password authentication to MythWeb? Check out the Securing MythWeb page for step by step advice on how to do it! In 0.19+, this functionality is built in, see .htaccess file for details

Myth Commands/tools

  • Did you know that the MythTV source tarball contains a contrib/ directory with lots of little tools for all sorts of things?

Display

  • Did you know that you can enable antialiasing by executing 'export QT_XFT=1' before starting mythfrontend? (ref.)

This will give you nice smooth fonts

  • Did you know that you can disable the XV acceleration (so you can take screenshots) by executing 'export NO_XV=1' before starting mythfrontend?

Video

  • Did you know you can export the nuv file to vcd, xvid, avi, other?

Check out nuv2disk or nuvexport

  • Did you know you can merge two MPG files together?
cat File1 File2 > Merged File-name.

(This can't be done with NUV and AVI files, since they have a file header)

  • Did you know you can merge two AVI files by using the transcoder utilities?
avimerge -o "name of the new.avi" -i cd1.avi cd2.avi cd3.avi

Misc

  • Did you know that you can record a program in LiveTV by pressing RECORD which has a default keybinding of 'R'? The recording will start at the beginning of the program or the beginning of the stream, whichever is most recent (In versions prior to 0.19, recording started when you hit 'R', and no data is copied from the LiveTV buffer)
  • Did you know that playback and recording can be filtered on a per channel basis? See Filter Instructions.
  • Did you know that if you messed up the keybindings beyond recognition, you can reset them by going to Setup|Edit Keys, pressing MENU (M), and then selecting, "Reset All Keys to Defaults."
  • Did you know that the key names can be found from the Qt's src/kernel/qkeysequence.cpp file. For example, you can add Volume Up, Volume Down and Volume Mute to the list of keys that control the respective actions.
  • Did you know that if you put *.png,*.jpg,*.jpeg or *.gif image files into your music folder, MythMusic will pick a random one when it plays from that folder and you're using the Album Art visualization.
  • Did you know that pressing 'd' in the profile-group menu lets you delete profile groups? (0.15+) (Is this still true? Doesn't seem to work in Knopp Myth 5A15.)
  • If you are having font related problems such as menu fonts not appearing a readable size, try installing the truetype Windows fonts using your distributions font installer. (was this ever the proper way to solve font size issues?)