FFmpeg drawtext pts gmtime无效

时间:2018-02-06 14:11:11

标签: php ffmpeg

我在ubuntu 16.4上使用此命令过滤器,使用php #include<bits/stdc++.h> using namespace std ; bool ar[21][21]; bool visited[21][21]; int ans[21][21]; int xa[]={0,-1,0,1}; int yb[]={1,0,-1,0}; int n; typedef struct Point{ int x,y; }P; typedef struct C { int x,y; int dis; } C; bool issafe(int x,int y) { return (x>=0 && x<n && y>=0 && y<n && ar[x][y] && !visited[x][y]); } void bfs(int x,int y) { queue<C> q; C in; in.x=x; in.y=y; in.dis=0; q.push(in); visited[x][y]=1; while(!q.empty()) { C c=q.front(); q.pop(); int a=c.x; int b=c.y; int d=c.dis; ans[a][b]=d; for(int i=0;i<4;i++) { int nx=a+xa[i]; int ny=b+yb[i]; if(issafe(nx,ny)) { visited[nx][ny]=1; in.x=nx; in.y=ny; in.dis=d+1; q.push(in); } } } } int main() { cin>>n; for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { cin>>ar[i][j]; } } int q; cin>>q; P rare[q]; int fans=10000; int mx=-1; for(int i=0;i<q;i++) { int a,b; cin>>a>>b; rare[i].x=a; rare[i].y=b; } for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { for(int k=0;k<21;k++){ for(int m=0;m<21;m++){ ans[k][m]=10000; } } // memset(ans,10000,sizeof(ans)); int flag=0; for(int l=0;l<21;l++) { for(int n1=0;n1<21;n1++){ visited[l][n1]=0; } } // memset(visited,0,sizeof(visited)); mx=-1; if(ar[i][j]) { bfs(i,j); for(int k=0;k<q;k++) { if(ans[rare[k].x][rare[k].y]==10000) { flag=1; break; } } if(!flag) { for(int k=0;k<q;k++) { mx=max(mx,ans[rare[k].x][rare[k].y]); // cout<<mx<<endl; } } // cout<< mx<<fans<<endl; fans=min(fans,mx); } } } cout<<fans<<endl; } /* input 8 0 0 1 0 0 1 0 0 0 0 1 0 1 1 1 1 0 0 1 0 1 0 0 1 0 0 1 1 1 0 0 0 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 2 1 7 4 7 */ 来运行:

exec

运行时没有错误。但是在叠加层上没有显示

注意:这是修复Windows cmd。我使用ffmpeg drawtext=fontfile='$local_font_light':text='%{pts\:gmtime\:0\:%M\\\:%S}':fontcolor='#ffffff':fontsize=26:shadowcolor='#000000':shadowx=2:shadowy=2:x=620:y=(685-text_h), fade=t=in:st=2.5:d=1,fade=t=out:st=55:d=1[fadeDuration]

我试试这个answers,但没有效果。

为什么?

0 个答案:

没有答案