UPDATE-2: निम्नलिखित स्क्रिप्ट सबमिट करने के बाद, इसने मुझ पर यह दावा किया कि टाइम पोजीशन (GUI में) सेट अप करने के लिए एक और तरीका है एक उपशीर्षक संपादक (जैसे। gnome-subtitles
) का उपयोग करना। आप "फैंटम सबटाइटल्स" की शुरुआत और अंत के पदों को चिह्नित करने के लिए बस क्लिक कर सकते हैं; वास्तव में आप अपनी फाइल-पाथ और टिप्पणियों को "सबटाइटल" के रूप में डाल सकते हैं ... कुछ प्रारूप उपयुक्त नहीं हैं (उदाहरण के लिए फ्रेम नंबर का उपयोग करते हुए) .. 'ViPlay उपशीर्षक फ़ाइल', पावर डिवएक्स, और 'Adobe Encore DVD' अच्छा।
अद्यतन-1; एक नई स्क्रिप्ट ... यह स्क्रिप्ट आपको एकीकृत प्लेलिस्ट की क्षमता नहीं देगा, लेकिन यह आपको कुछ भी लिखने की आवश्यकता के बिना, स्मेलर के भीतर शुरुआत और समाप्ति समय का चयन करने और सहेजने और संशोधित करने की अनुमति देगा।
यह जानकारी एक कॉन्फ़िगर फ़ाइल में सहेजी जाती है, जिसका फ़ाइल-पथ व्यक्तिगत रूप से "प्ले" किया जा सकता है, या एक अनुक्रम में समूहीकृत किया जा सकता है, एक अन्य स्क्रिप्ट के माध्यम से (मेरी 'प्ले स्क्रिप्ट' के समान, या आपकी Emacs स्क्रिप्ट की तरह) ।।
यह Smplayer के Seek
संवाद का उपयोग करके काम करता है ... संवाद में xmacro
हेरफेर करता है (मैंने पाया है कि इसे sleep .3
xmacro कमांड के बीच की आवश्यकता है ) ... समय HH: MM: SS प्रारूप में एक फ़ाइल में संग्रहीत किया जाता है ~/.config/smplayer
... पहली पंक्ति है स्टार्ट-टाइम, 2-लाइन एंड-टाइम है, और रूट डायरेक्टरी को निर्दिष्ट करने के लिए तीसरी लाइन है ... इस 3-लाइन का उपयोग फोलो-अप स्क्रिप्ट द्वारा एक वैकल्पिक पथ संकेतक के रूप में किया जाता है जो एक स्माइलर कॉन्फ़िगरेशन सेटिंग को संशोधित करता है इसके साथ भड़काना -ss
और -endpos
... टाइमस्टैम्प कॉन्फ़िगर फ़ाइल को मीडिया फ़ाइल के रूप में नाम दिया गया है, एक .smplay
प्रत्यय के साथ ...
तो यह वह सब कुछ नहीं है जो आप चाहते हैं, लेकिन यह बिना किसी टाइपिंग के समय सेट करने में मदद कर सकता है ...
यहाँ 'प्राप्त टाइमस्टैम्प' स्क्रिप्ट है:
#!/bin/bash
# Bind this script to a key-combination of your choice..
# It currently responds only to an Smplayer window.
id=$(xdotool getactivewindow)
title="$(xwininfo -id "$id" |
sed -n "2s/^xwininfo: Window id: \(0x[[:xdigit:]]\+\) \x22\(.*\)\x22$/\2/p")"
if [[ $title =~ ^.*\ -\ SMPlayer$ ]] ; then
smplayer_d="$HOME/.config/smplayer"
clip_d="$smplayer_d/clips"
[[ ! -d "$clip_d" ]] && mkdir -p "$clip_d"
bname="${title% - SMPlayer}"
clip_f="$clip_d/$bname.smplay" # Same name as video, with '.smplay' suffix
if [[ ! -f "$clip_f" \
|| "$(<"$clip_f" wc -l)" != "3" ]]
then # Prime with three defaults
# FROM TO ROOT-dir
echo -e "0:00:00\n0:00:00\n" >"$clip_f"
fi
# Get timestamp, in seconds, of current stream position (from the current window)
# using the "Smplayer - seek" dialog, via Ctrl+j
sleep .3; echo -n "KeyStrPress Control_L KeyStrPress j KeyStrRelease j KeyStrRelease Control_L" | xmacroplay -d 10 :0.0 &>/dev/null
sleep .3; echo -n " KeyStrPress Home KeyStrRelease Home " | xmacroplay -d 10 :0.0 &>/dev/null
sleep .3; echo -n "KeyStrPress Shift_L KeyStrPress End KeyStrRelease End KeyStrRelease Shift_L " | xmacroplay -d 10 :0.0 &>/dev/null
sleep .3; echo -n "KeyStrPress Control_L KeyStrPress c KeyStrRelease c KeyStrRelease Control_L" | xmacroplay -d 10 :0.0 &>/dev/null
sleep .3; echo -n " KeyStrPress Escape KeyStrRelease Escape " | xmacroplay -d 10 :0.0 &>/dev/null
seekHMS="$(xsel -o -b)"
# Now set config times to defaults (in case of malformed times)
ssHMS="0:00:00"
endposHMS="0:00:00"
# Now get config data from config file
eval "$( sed -ne "1s/^\([0-9]\+\):\([0-5][0-9]\):\([0-5][0-9]\)$/ ssHMS=\"&\"/p" \
-e "2s/^\([0-9]\+\):\([0-5][0-9]\):\([0-5][0-9]\)$/endposHMS=\"&\"/p" \
-e "3s/.*/ root_d=\"&\"/p" "$clip_f" )"
# Present dialog to set specifick items.
REPLY=$(zenity \
--list --height=310 --width=375 \
--title="Set Clip Start / End Time" \
--text=" Select Clip Start / End for time: $seekHMS\n\
or choose another option\n\
\tthen click OK" \
--column="Position" --column=" " --column="Current Setting " \
"Clip Start" " " "$ssHMS" \
"Clip End" " " "$endposHMS" \
"UNSET Start" " " " " \
"UNSET End" " " " " \
"* Open directory" " of" "config files *"
);
[[ "$REPLY" == "Clip Start" ]] && sed -i -e "1 s/.*/$seekHMS/" "$clip_f"
[[ "$REPLY" == "Clip End" ]] && sed -i -e "2 s/.*/$seekHMS/" "$clip_f"
[[ "$REPLY" == "UNSET Start" ]] && sed -i -e "1 s/.*/0:00:00/" "$clip_f"
[[ "$REPLY" == "UNSET End" ]] && sed -i -e "2 s/.*/0:00:00/" "$clip_f"
[[ "$REPLY" == "* Open directory" ]] && nautilus "$clip_d"
fi
निम्नलिखित स्क्रिप्ट मेरा मूल 'प्ले' स्क्रैप्ट है। यह एवोवेस्ट टाइमस्टैम्प स्क्रिप्ट से स्वतंत्र है, लेकिन उन्हें एक साथ काम करने में ज्यादा समय नहीं लगेगा ...
यह स्मेलर को 'ड्राइव' करेगा, जो कि mplayer को आंतरिक रूप से उपयोग करता है .. यह कम से कम, एक सामान्य GUI है, लेकिन आपकी प्लेलिस्ट को आपके टेक्स्ट एडिटर में रहने की आवश्यकता होगी .. और आप स्पष्ट रूप से उस तरीके के बारे में पहले से ही जानते हैं :)
मैंने कुछ साल पहले यह कोशिश की थी, लेकिन मैं इसके बारे में सब भूल गया क्योंकि मुझे अक्सर ऐसी चीज़ की ज़रूरत नहीं होती, लेकिन "बुकमार्क" रखना अच्छा है .. मुझे खुशी है कि आपने इस विचार को फिर से जीवित कर दिया है। यहाँ स्क्रिप्ट है ... जो वास्तव में केवल वही करता है जो आप कर रहे हैं, लेकिन स्मेलर (एक खिलाड़ी GUI)
#
# Summary:
# Play one video (only) in 'smplayer', passing -ss and -endpos values to 'mplayer'
# It uses 'locate' to get the path of the video (by just its basename)
#
# eg:
# $1 $2 $3 $4
# basename -ss -endpos root
# "Titus - The Gorilla King.mp4" 240 30 "$HOME" # A fascinating documentary of the long reign of a silver-back gorialla
#
[[ "$2" == "" ]] && set "$1" 0 "$3" "$4"
[[ "$3" == "" ]] && set "$1" "$2" 36000 "$4" # 36000 is arbitary (24 hours)
[[ "$4" == "" ]] && root="$HOME" || root="$4"
file=( "$(locate -er "^$root/\(.*/\)*\+$1$")" )
# 1) Tweak 'smplayer.ini' to run 'mplayer' with the specified -ss and -endpos times
# 2) Run 'smplayer' to play one video only. The time settings will hold afer exit,
# so the script waits (backgrounded) for smplayer to exit
# 3) When 'smplayer' exits, set values to extreme limits: -ss 0 -endpos 3600
# or(?): TODO remove the settings enitrely,
# but that requires a different regex
a=0 z=36000
#
# -ss <time> (also see -sb)
# -ss 56 # Seeks to 56 seconds.
# -ss 01:10:00 #Seeks to 1 hour 10 min.
#
# -endpos <[[hh:]mm:]ss[.ms]|size[b|kb|mb]> (also see -ss and -sb)
# Stop at given time or byte position.
# NOTE: Byte position is enabled only for MEncoder and will not be accurate, as it can only stop at a frame boundary.
# When used in conjunction with -ss option, -endpos time will shift forward by seconds specified with -ss.
# -endpos 56 # Stop at 56 seconds.
# -endpos 01:10:00 # Stop at 1 hour 10 minutes.
# -ss 10 -endpos 56 # Stop at 1 minute 6 seconds.
# -endpos 100mb # Encode only 100 MB.
#
# -ss 0 -endpos 36000
# \1 \2 \3 \4 \5 \6 \7 \8
sed -i -e "s/^\(mplayer_additional_options.*\)\( \|=\)\(-ss \+\)\([^ ]\+\)\( .*\)\(-endpos \+\)\([0-9:mb]\+\)\(.*\)/\1\2\3${2}\5\6${3}\8/" $HOME/.config/smplayer/smplayer.ini
(smplayer "$file"
sed -i -e "s/^\(mplayer_additional_options.*\)\( \|=\)\(-ss \+\)\([^ ]\+\)\( .*\)\(-endpos \+\)\([0-9:mb]\+\)\(.*\)/\1\2\3${a}\5\6${z}\8/" $HOME/.config/smplayer/smplayer.ini
)
exit
flag
अपने प्रश्न पर बटन का उपयोग करें और इसे माइग्रेट करने का अनुरोध करें।