From 7fe9e45be6038a7cae3d6fafe0f5911b485aca76 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mario=20H=C3=B6llein?= Date: Mon, 30 May 2016 12:46:56 +0200 Subject: [PATCH] mplayer --- find.txt | 2 ++ mplayer.txt | 41 +++++++++++++++++++++++++++++++++++++++++ xargs.txt | 1 + 3 files changed, 44 insertions(+) create mode 100644 mplayer.txt diff --git a/find.txt b/find.txt index cff1f5f..63eda6b 100644 --- a/find.txt +++ b/find.txt @@ -1,2 +1,4 @@ ###dateien (png) größer 1700k find -type f -size +1700k -name \*.png +###dateien suchen wenn sonderzeichen enthalten sind und dann weiter verarbeiten +find . -type f -print0 | while read -d $'\0' file; do echo "\"${file}\"" ; done diff --git a/mplayer.txt b/mplayer.txt new file mode 100644 index 0000000..e14e7f9 --- /dev/null +++ b/mplayer.txt @@ -0,0 +1,41 @@ +###shortcuts +<- and -> Seek backward/forward 10 seconds. +up and down Seek forward/backward 1 minute. +pgup and pgdown Seek forward/backward 10 minutes. +[ and ] Decrease/increase current playback speed by 10%. +{ and } Halve/double current playback speed. +backspace Reset playback speed to normal. +< and > Go backward/forward in the playlist. +ENTER Go forward in the playlist, even over the end. +HOME and END next/previous playtree entry in the parent list +INS and DEL (ASX playlist only) next/previous alternative source. +p / SPACE Pause (pressing again unpauses). +. Step forward. Pressing once will pause movie, every consecutive press will play one frame and then go into pause mode again (any other key unpauses). +q / ESC Stop playing and quit. ++ and - Adjust audio delay by +/- 0.1 seconds. +/ and * Decrease/increase volume. +9 and 0 Decrease/increase volume. +( and ) Adjust audio balance in favor of left/right channel. +m Mute sound. +_ (MPEG-TS and libavformat only) Cycle through the available video tracks. +# (DVD, MPEG, Matroska, AVI and libavformat only) Cycle through the available audio tracks. +TAB (MPEG-TS only) Cycle through the available programs. +f Toggle fullscreen (also see -fs). +T Toggle stay-on-top (also see -ontop). +w and e Decrease/increase pan-and-scan range. +o Toggle OSD states: none / seek / seek + timer / seek + timer + total time. +d Toggle frame dropping states: none / skip display / skip decoding (see -framedrop and -hardframedrop). +v Toggle subtitle visibility. +j Cycle through the available subtitles. +y and g Step forward/backward in the subtitle list. +F Toggle displaying forced subtitles . +a Toggle subtitle alignment: top / middle / bottom. +x and z Adjust subtitle delay by +/- 0.1 seconds. +r and t Move subtitles up/down. +i (-edlout mode only) Set start or end of an EDL skip and write it out to the given file. +s (-vf screenshot only) Take a screenshot. +S (-vf screenshot only) Start/stop taking screenshots. +I Show filename on the OSD. +! and @ Seek to the beginning of the previous/next chapter. +D (-vo xvmc, -vf yadif, -vf kerndeint only) Activate/deactivate deinterlacer. + diff --git a/xargs.txt b/xargs.txt index c9131cf..8a657da 100644 --- a/xargs.txt +++ b/xargs.txt @@ -1,2 +1,3 @@ ###Weiterverarbeitung von datei.* grep Nachbearb -l *.dat | sed -e "s/.dat$//"|xargs -I{} -c bash "mv -v {}.* Nachbearbeitung/" +### -- 2.43.0