An easy to use MXF file viewer for Emacs. Display physical structure of MXF in neat.
- Provide a view of MXF physical structure
- Create links between instance references
- Open/collapse widget easily
- Hexlify indivisual essence
- Extract individual essence to file
- Support for imenu and font lock
- Revert buffer
- No metadata for local tags
- No validation
- No hooks
- View MXF structure
- Move around with imenu
- Hexlify essence
M-x package-install RET mxf-view RET
After installation, put following code to your init file.
(require 'mxf-view)
Or, if you’re fond of `use-pacakge’:
(use-package mxf-view)
Then you can open MXF files directly and navigate physical structure at ease.
Put mxf-view.el in your load-path, then add following code to your init file.
(require 'mxf-view)
This updates `auto-mode-alist’ and opening a MXF file enables mxf-view-mode automatically.
If you would like to manage mxf-view as a package, try this:
M-x package-install-file RET mxf-view.el RET
key | function |
---|---|
SPC | scroll up |
DEL | scroll down |
j,n | move to next widget |
k,p | move to prior widget |
M-n | move to next sibling widget |
M-p | move to previous sibling widget |
h,u | move to parent widget |
c,TAB,RET | toggle single widget |
/,* | toggle widget recursively |
x | hexlify essence |
e | extract essence to file |
g | revert buffer |
z | suspend |
q | quit |