Questions tagged «subtitle»

7
如何在Matplotlib中的子图中添加标题?
我有一个包含许多子图的图。 fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('Window Title') # Returns the Axes instance ax = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) 如何为子图添加标题? fig.suptitle为所有图形添加标题,尽管ax.set_title()存在,但后者不向我的子图添加任何标题。 谢谢您的帮助。 编辑:纠正了有关的错字set_title()。谢谢罗格·卡西斯

9
使用ffmpeg添加文本字幕
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 上个月关闭。 改善这个问题 我正在尝试使用ffmpeg将文本字幕添加到.mp4容器中: ffmpeg -i input.mp4 -i input.srt -map 0.0 -map 0.1 -map 1.0 output.mp4 当我尝试运行此行时,它给我一个错误: 流图的Nmber必须匹配输出流的数量。 如果我尝试将mp4更改为mkv(尽管mp4支持文本字幕),则如下所示: ffmpeg -i input.mp4 -i input.srt -map 0.0 -map 0.1 -map 1.0 output.mkv 它正确地映射了流,但是给出了一个错误: 找不到输出流#0.2的编码器(编解码器ID 94210) 当我发射 ffmpeg -codecs 我可以看到srt编解码器受支持作为解码器和编码器,但是我不确定mp4和mkv子编码使用什么,以及我是否需要将其打开或单独编译。
121 ffmpeg  mp4  subtitle  srt 

7
如何添加不同大小和颜色的ggplot2字幕?
我正在使用ggplot2来改善降水量。 这是我想要实现的可复制示例: library(ggplot2) library(gridExtra) secu <- seq(1, 16, by=2) melt.d <- data.frame(y=secu, x=LETTERS[1:8]) m <- ggplot(melt.d, aes(x=x, y=y)) + geom_bar(fill="darkblue") + labs(x="Weather stations", y="Accumulated Rainfall [mm]") + opts(axis.text.x=theme_text(angle=-45, hjust=0, vjust=1), title=expression("Rainfall"), plot.margin = unit(c(1.5, 1, 1, 1), "cm"), plot.title = theme_text(size = 25, face = "bold", colour = "black", vjust …
87 r  ggplot2  subtitle 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.