gpt4 book ai didi

python - 将变量添加到 ! jupyter中的命令

转载 作者:行者123 更新时间:2023-12-04 23:07:09 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Passing IPython variables as arguments to bash commands

(4 个回答)


去年关闭。




我有一个存储在变量中的字符串。该字符串表示视频文件的路径。我想在 jupyter-lab 中运行这个命令:

path = 'video.mp4'
meta = !ffmpeg -i path
这导致找不到文件。
如果我直接输入路径,它的工作原理是这样的:
meta = !ffmpeg -i video.mp4
print(meta)
['ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers',
' built with Apple clang version 11.0.3 (clang-1103.0.32.62)',
' configuration: --prefix=/opt/local --enable-swscale --enable-avfilter --enable-avresample --enable-libmp3lame --enable-libvorbis --enable-libopus --enable-librsvg --enable-libtheora --enable-libopenjpeg --enable-libmodplug --enable-libvpx --enable-libsoxr --enable-libspeex --enable-libass --enable-libbluray --enable-lzma --enable-gnutls --enable-fontconfig --enable-libfreetype --enable-libfribidi --disable-libjack --disable-libopencore-amrnb --disable-libopencore-amrwb --disable-libxcb --disable-libxcb-shm --disable-libxcb-xfixes --disable-indev=jack --enable-opencl --disable-outdev=xv --enable-audiotoolbox --enable-videotoolbox --enable-sdl2 --disable-securetransport --mandir=/opt/local/share/man --enable-shared --enable-pthreads --cc=/usr/bin/clang --enable-libdav1d --arch=x86_64 --enable-x86asm --enable-libx265 --enable-gpl --enable-postproc --enable-libx264 --enable-libxvid',
' libavutil 56. 51.100 / 56. 51.100',
' libavcodec 58. 91.100 / 58. 91.100',
' libavformat 58. 45.100 / 58. 45.100',
' libavdevice 58. 10.100 / 58. 10.100',
' libavfilter 7. 85.100 / 7. 85.100',
' libavresample 4. 0. 0 / 4. 0. 0',
' libswscale 5. 7.100 / 5. 7.100',
' libswresample 3. 7.100 / 3. 7.100',
' libpostproc 55. 7.100 / 55. 7.100',
"Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'video.mp4':",
' Metadata:',
' major_brand : isom',
' minor_version : 512',
' compatible_brands: isomiso2avc1mp41',
' encoder : Lavf58.45.100',
' Duration: 00:00:17.34, start: 0.000000, bitrate: 479106 kb/s',
' Stream #0:0(eng): Video: h264 (High 4:4:4 Predictive) (avc1 / 0x31637661), yuv420p, 2160x3840 [SAR 1:1 DAR 9:16], 479126 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)',
' Metadata:',
' handler_name : VideoHandle',
' Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 129 kb/s (default)',
' Metadata:',
' handler_name : SoundHandle',
'At least one output file must be specified']
如何保留此功能,但将路径存储在变量中?我不想使用子进程,因为我想将 meta 的输出存储在一个变量中。

最佳答案

在变量名周围使用花括号来强制变量插值:

path = 'video.mp4'
meta = !ffmpeg -i {path}

关于python - 将变量添加到 ! jupyter中的命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66788901/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com