如何使用仅扩展名不同的输出文件名?

发布于 2025-01-10 23:19:44 字数 388 浏览 0 评论 0原文

我正在尝试创建一个 Automator 服务,将 macOS Finder 中的 MTS 文件转换为 MP4。为此,我需要设置一个小 bash 脚本,但我不知道如何使用输入文件名(例如“file.MTS”),然后使用 HandBrakeCLI 生成一个名为“file.mp4”的文件。

当我尝试将不带扩展名的文件名分配给变量然后使用它时,我做错了一些事情,但我不知道问题是什么:

for if in "$@"
do
     dest=`"$(basename "$if" | sed 's/\(.*\)\..*/\1/')"`
     /Applications/HandBrakeCLI -i "$if" -o "$dest".mp4 --preset="Fast 1080p30"
done

I'm trying to create an Automator service that converts a MTS file to MP4 from the macOS Finder. To do so I need to setup a little bash script, but I don't know how to use input filename (for example, "file.MTS") and then generate a file called "file.mp4" with HandBrakeCLI.

I'm doing something wrong when I'm trying to assign the filename without the extension to a variable and then using it, but I don't know what is the problem:

for if in "$@"
do
     dest=`"$(basename "$if" | sed 's/\(.*\)\..*/\1/')"`
     /Applications/HandBrakeCLI -i "$if" -o "$dest".mp4 --preset="Fast 1080p30"
done

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

土豪 2025-01-17 23:19:44

你不需要sedbasename 已经知道如何删除给定的扩展名。

for if in "$@"; do
    dest=$(basename "$if" .MTS).mp4
    /Applications/HandBrakeCLI -i "$if" -o "$dest" --preset="Fast 1080p30"
done

正如评论中提到的,反引号是不必要的且不正确的。

例如,

$ basename /path/to/foo.txt .txt
foo

如果您提前不知道实际扩展,则参数扩展就足够了。

dest=$(basename "$if")
dest=${dest%.*}  # Strip at most one extension

或者

dest=${dest%%.*}  # Strip *all* extensions

You don't need sed; basename already knows how to strip a given extension.

for if in "$@"; do
    dest=$(basename "$if" .MTS).mp4
    /Applications/HandBrakeCLI -i "$if" -o "$dest" --preset="Fast 1080p30"
done

As mentioned in a comment, the backticks are unnecessary and incorrect.

For example,

$ basename /path/to/foo.txt .txt
foo

If you don't know the actual extension ahead of time, parameter expansion is sufficient.

dest=$(basename "$if")
dest=${dest%.*}  # Strip at most one extension

or

dest=${dest%%.*}  # Strip *all* extensions
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文