リスト内の各ビデオの開始時間と停止時間の異なるプレイリスト(ビデオファイル用)を作成および編集できるLinux用のGUIアプリケーション(mplayer GUIやbansheeなど)はありますか?
次へ追加:
現在、私は次の内容を含むファイルを手動で作成します。
video.avi -ss 2440 -endpos 210
#some comment
video2.mp4 -ss 112 -endpos 2112
その後、ラッパースクリプトがあります。mplayer -fs $(grep -v "^ #" $1)
さらに、私はそのようなファイルを少し簡単に編集できるようにするいくつかのemacs機能を作成しました。 (-endposで要求されているように、開始時間と終了時間をhh:mm:ss形式から秒に、終了時間を相対位置(終了時間 - 開始時間)に変換するのと同じです(関心のある人がいる場合はマクロを公開できます) )しかし、これはまだあまりにも不便なので、これを行うための良いGUIがあるかどうか質問があります(たとえば、ビデオタイムラインにプレイリストの開始時間と終了時間を表示できるなど)。
答え1
英語が母国語でなくて間違った質問をすることかもしれませんが、このようなツールで映像を編集すればもっと良くないでしょうか?チノこんなプレイリストを作る代わりに?
必要に応じて開始時間と終了時間を調整できますが、それほど難しくないと思います。
答え2
Update-2:次のスクリプトを送信した後、GUIで時間位置を設定するもう1つの方法は字幕エディタ(例:)をgnome-subtitles
使用することです。ワンクリックで「ゴーストキャプション」が始まり終わった場所を表示できます。実際には、ファイルパスと説明を「字幕」として渡すことができます...一部の形式は適切ではありません(たとえば、フレーム番号を使用)。
アップデート-1;新しいスクリプト...このスクリプトは統合プレイリスト機能を提供しませんが、何も入力せずにSmplayerで開始時間と終了時間を選択、保存、および変更できます。
この情報は、ファイルパスを個別に「再生」するか、他のスクリプト(私の「再生」スクリプトまたはEmacsスクリプトと同様)によって順次グループ化できる構成ファイルに保存されます。
操作方法はSmplayerのSeek
ダイアログボックスを利用することです...xmacro
ダイアログボックスを操作することです(xmacroコマンドの間にある必要があることがわかりましたsleep .3
)...時間は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
次のスクリプトは私の元の「再生」スクリプトです。これは上記のTimestampスクリプトとは無関係ですが、一緒に動作するのに時間がかかりません。
内部的には、mplayerを使用するSmplayerを「駆動」します。少なくとも一般的な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
答え3
2番目の答えを追加しました。通常のプレイリストのように動作します。SMPlayerでは、わかりやすくするためにここが良いです...
プレイリストで完璧に動作するようになりました...
この方法では、SMPlayerの再コンパイルと特定のファイル命名方法が必要です。 SMPlayerのソースコードで関数を1つだけ変更し、同じソースファイルに3つのヘッダファイルを追加しました。smplayer_0.6.8
MavericとLucidで使用してコンパイルしました。 Miercat smplayer_0.6.9
..以降のバージョンでは1行が異なりますが、あまり影響はありません...修正された関数とヘッダーは次のとおりです。smplayer_0.6.8
しかし、前の回答のzenityダイアログを使用して開始時間と終了時間をキャプチャできます。
思い出させる- 次のソースセグメントは次のとおりですsmplayer_0.6.8
。変更するファイルは次のとおりです。../smplayer-0.6.9/src/findsubtitles/osparser.cpp
...「0.6.8」と「0.6.9」の新しいセグメントは同じですが、元のセグメントは1行ずつ異なります(非常に近い)。最後まで;決勝戦直前return hexhash;
)
#include
既存のタイトルのすぐ下に最初の行ブロックを追加します。
// ====================
// fred mod begin block
#include <QFileInfo>
#include <QRegExp>
#include <QSettings>
#include "paths.h"
// fred mod end block
// ==================
修正された機能
QString OSParser::calculateHash(QString filename) {
QFile file(filename);
if (!file.exists()) {
qWarning("OSParser:calculateHash: error hashing file. File doesn't exist.");
return QString();
}
file.open(QIODevice::ReadOnly);
QDataStream in(&file);
in.setByteOrder(QDataStream::LittleEndian);
quint64 size=file.size ();
quint64 hash=size;
quint64 a;
for(int i = 0; i < 8192; i++) {
in >> a ; hash += a;
};
file.seek(size-65536);
for(int i = 0; i < 8192; i++) {
in >> a ; hash += a;
};
// =====================================================================
// fred mod begin block
//
// A mod to enable unique smplayer .ini files to be created for
// content-identical media files whose file-names match
// a specific pattern based on two timestamps.
// This is the naming pattern:
//
// name.[00:11:22].[33.44.55].mkv
//
// The two time stamps indicate the start and end points of a
// clip to be played according to settings in the unique .ini
//
// The so named files can be, and typically will be, soft (or hard) links.
// The "original" file can also named in this manner, if you like,
// but that would make the "original" start playing as a clip,
// NOTE: soft links become invalid when you rename the original file.
//
// Note: For this system to work, you need to enable the following:
// In SMPlayer's GUI, open the Options dialog...
// In the "General" tab... "Media settings"...
// enable: 〼 "Remember settings for all files (audio track, subtitles...)"
// "Remember time position" can be 'on' or 'off'; it is optional1
// but it is disabled for these clips.
// "Store setings in" must be: "multiple ini files"
//
QFileInfo fi(filename);
QString name = fi.fileName();
//
// ===================================================================
// This RegExp expects a name-part,
// followed by 2 .[timestamps] (Begin-time and End-time)
// followed by a .extension
//
// .[ Begin ].[ End ]
// eg. name.[00:11:22].[33.44.55].mkv
//
// Note: The delimiter between each numeric value can be any non-numeric character.
// The leading dot '.' and square brackets '[]' must be as shown
// HH, MM, and SS must each be 2 valid time-digits
//
QRegExp rx("^.+" // NAME
"\\.\\[([0-9][0-9])[^0-9]" // .[HH.
"([0-5][0-9])[^0-9]" // mm.
"([0-5][0-9])\\]" // ss]
"\\.\\[([0-9][0-9])[^0-9]" // .[HH.
"([0-5][0-9])[^0-9]" // mm.
"([0-5][0-9])\\]" // ss]
"\\.([^0-9]+)$"); // .EXTN
//
QString qstrIni;
rx.setPatternSyntax(QRegExp::RegExp);
if(rx.exactMatch(name)) {
bool ok;
QString qstrDlm(".");
QString qstrBegEnd = rx.cap(1) + rx.cap(2) + rx.cap(3)
+ rx.cap(4) + rx.cap(5) + rx.cap(6);
hash += qstrBegEnd.toLongLong(&ok,10); // The UNIQUE-FIER
//
quint32 quiBegSec=(rx.cap(1).toULong(&ok,10)*3600)
+(rx.cap(2).toULong(&ok,10)* 60)
+(rx.cap(3).toULong(&ok,10));
quint32 quiEndSec=(rx.cap(4).toULong(&ok,10)*3600)
+(rx.cap(5).toULong(&ok,10)* 60)
+(rx.cap(6).toULong(&ok,10));
quint32 quiDifSec=(quiEndSec-quiBegSec);
//
QString qstrBegIni = "-ss " + QString::number(quiBegSec);
QString qstrEndIni = "-endpos " + QString::number(quiDifSec);
qstrIni = qstrBegIni + " " + qstrEndIni;
}
// fred mod end block
// =====================================================================
// fred NOTE: the following 2 lines are a single line in smplayer-0.6.9
QString hexhash("");
hexhash.setNum(hash,16);
// =====================================================================
// fred mod begin block
if( !qstrIni.isEmpty() ) {
// ** The next code line is not ideal, but should be okay so long
// as SMPlayer's options are set to use Multiple .ini files.
// The literal "file_settings" is HARDCODED, as It wasnt' straight
// forward to get the value, The rest of the path was easily available
// without any significant mods, which "file_settings" would require.
// TODO: Check for Multiple .ini Option being enabled.
//
QString dir_settings = Paths::configPath() + "/file_settings";
QString fqfn_settings = dir_settings + "/" + hexhash[0] + "/" + hexhash + ".ini";
QSettings set(fqfn_settings, QSettings::IniFormat);
set.beginGroup("file_settings");
set.setValue( "starting_time", "0" );
set.setValue( "mplayer_additional_options", qstrIni );
}
// fred mod end block
// =====================================================================
return hexhash;
}
答え4
実際にプレイリストに適用できるかどうかは確認できませんでしたが、編集決定リスト(EDL)を確認できます。始めるのに役立ついくつかのリンクは次のとおりです。
コマンドラインでビデオを編集するLinux Gazetteの記事
ビデオ間に少し一時停止があっても問題ない場合は、毎回別のEDLファイルを使用してスクリプトでmplayerを数回実行できます。一時停止しない場合は、varrttoが提案したような新しいビデオを作成する必要があります。