我有代码来检查带有“检测到 DRM 保护的流”的 STDERR:
const static char* DRM_TOKEN = "DRM protected stream detected";
const char* source = argv[1];
char tempfile[80];
memset(tempfile, 0, 80);
snprintf(tempfile, 80, "stderr_%lld.log", av_gettime());
freopen(tempfile, "w", stderr);
fflush(stderr);
FILE *fp = fopen(tempfile, "r");
if(fp)
{
char STDERR[256];
while(!feof(fp))
{
memset(STDERR, 0, sizeof(char) * 256);
fgets(STDERR, 256, fp);
if(strstr(STDERR, DRM_TOKEN) != NULL)
{
drm = 1;
break ;
}
}
fclose(fp);
}
它有效,但我想知道将 STDERR 读入 char[] 的任何直接方法。PS。我的代码将在 linux 或 macos 中运行。