📄 mp4art.cpp
字号:
/* * The contents of this file are subject to the Mozilla Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is MPEG4IP. * * The Initial Developer of the Original Code is Cisco Systems Inc. * Portions created by Cisco Systems Inc. are * Copyright (C) Cisco Systems Inc. 2004. All Rights Reserved. * * Contributor(s): * Bill May wmay@cisco.com (from mp4info.cpp) */#include "mp4.h"#include "mpeg4ip_getopt.h"static uint8_t png_hdr[] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a};static uint8_t jpg_hdr[] = { 0xff, 0xd8, 0xff, 0xe0};static const char* check_image_header(uint8_t *header) { if (memcmp(header, png_hdr, 8) == 0) return ".png"; /* PNG */ else if (memcmp(header, jpg_hdr, 4) == 0) return ".jpg"; /* JPEG */ fprintf(stderr, "Picture was an unknown type. Picture will lack a file extension.\n"); return NULL;}void PrintUsage(char *programName){ fprintf(stderr, "Usage: %s <m4a-file-name> [/output/path/to/picture/basename] \n", programName); fprintf(stderr, "Note: a picture suffix (i.e: \".jpg\") is not necessary, \n"); fprintf(stderr, "it will be determined from the picture header itself. \n");}static void strip_filename (const char *name, char *buffer){ const char *suffix, *slash; if (name != NULL) { suffix = strrchr(name, '.'); slash = strrchr(name, '/'); if (slash == NULL) slash = name; else slash++; if (suffix == NULL) suffix = slash + strlen(slash); memcpy(buffer, slash, suffix - slash); buffer[suffix - slash] = '\0'; } else { strcpy(buffer, "out"); }}int main(int argc, char** argv){ /* begin processing command line */ char* ProgName = argv[0]; while (true) { int c = -1; int option_index = 0; static struct option long_options[] = { { "version", 0, 0, 'V' }, { NULL, 0, 0, 0 } }; c = getopt_long_only(argc, argv, "V", long_options, &option_index); if (c == -1) break; switch (c) { case '?': //fprintf(stderr, "usage: %s %s", ProgName, usageString); PrintUsage(ProgName); exit(0); case 'V': fprintf(stderr, "%s - %s version %s\n", ProgName, MPEG4IP_PACKAGE, MPEG4IP_VERSION); exit(0); default: PrintUsage(ProgName); fprintf(stderr, "%s: unknown option specified, ignoring: %c\n", ProgName, c); } } /* check that we have at least one non-option argument */ if ((argc - optind) < 1) { PrintUsage(ProgName); exit(1); } /* end processing of command line */ printf("%s version %s\n", ProgName, MPEG4IP_VERSION); while (optind < argc) { char *mp4FileName = argv[optind]; MP4FileHandle mp4file = MP4Read(mp4FileName); if (mp4file != MP4_INVALID_FILE_HANDLE) { uint8_t *art; uint32_t art_size; if (MP4GetMetadataCoverArt(mp4file, &art, &art_size)) { //extract the image from the mp4file char filename[MAXPATHLEN]; //the user-supplied path with no extension (it will get determined from the header) const char* ending = check_image_header(art); if (argc != optind + 1) { strcpy(filename, argv[optind + 1]); optind++; } else { strip_filename(mp4FileName, filename); } if (ending != NULL) strcat(filename, ending); struct stat fstat; if (stat(filename, &fstat) == 0) { fprintf(stderr, "Error: file %s already exists\n", filename); exit(0); } else { FILE *ofile = fopen(filename, FOPEN_WRITE_BINARY); if (ofile != NULL) { fwrite(art, art_size, 1, ofile); fclose(ofile); printf("created file %s\n", filename); free(art); MP4Close(mp4file); return(0); } else { fprintf(stderr, "couldn't create file %s\n", filename); } } } else { fprintf(stderr, "art not available for %s\n", mp4FileName); } optind++; } } return(0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -