Mp4Extract.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:5k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*****************************************************************
  2. |
  3. |    AP4 - MP4 File Processor
  4. |
  5. |    Copyright 2003 Gilles Boccon-Gibod & Julien Boeuf
  6. |
  7. |
  8. |    This file is part of Bento4/AP4 (MP4 Atom Processing Library).
  9. |
  10. |    Unless you have obtained Bento4 under a difference license,
  11. |    this version of Bento4 is Bento4|GPL.
  12. |    Bento4|GPL is free software; you can redistribute it and/or modify
  13. |    it under the terms of the GNU General Public License as published by
  14. |    the Free Software Foundation; either version 2, or (at your option)
  15. |    any later version.
  16. |
  17. |    Bento4|GPL is distributed in the hope that it will be useful,
  18. |    but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. |    GNU General Public License for more details.
  21. |
  22. |    You should have received a copy of the GNU General Public License
  23. |    along with Bento4|GPL; see the file COPYING.  If not, write to the
  24. |    Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  25. |    02111-1307, USA.
  26. |
  27.  ****************************************************************/
  28. /*----------------------------------------------------------------------
  29. |       includes
  30. +---------------------------------------------------------------------*/
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include "Ap4.h"
  34. #include "Ap4FileByteStream.h"
  35. #include "Ap4AtomFactory.h"
  36. #include "Ap4Utils.h"
  37. /*----------------------------------------------------------------------
  38. |       constants
  39. +---------------------------------------------------------------------*/
  40. #define BANNER "MP4 Atom Extractor - Version 0.5an"
  41.                "(c) 2003-2005 Gilles Boccon-Gibod & Julien Boeuf"
  42.  
  43. /*----------------------------------------------------------------------
  44. |       PrintUsageAndExit
  45. +---------------------------------------------------------------------*/
  46. static void
  47. PrintUsageAndExit()
  48. {
  49.     fprintf(stderr, 
  50.             BANNER 
  51.             "nnusage: mp4extract [options] <atom_path> <input> <output>n"
  52.             "    options:n"
  53.             "    --payload-only : ommit the atom headern");
  54.     exit(1);
  55. }
  56. /*----------------------------------------------------------------------
  57. |       main
  58. +---------------------------------------------------------------------*/
  59. int
  60. main(int argc, char** argv)
  61. {
  62.     if (argc < 4) {
  63.         PrintUsageAndExit();
  64.     }
  65.     
  66.     // parse arguments
  67.     const char* atom_path       = NULL;
  68.     const char* input_filename  = NULL;
  69.     const char* output_filename = NULL;
  70.     bool        payload_only    = false;
  71.     char* arg;
  72.     while ((arg = *++argv)) {
  73.         if (!strcmp(arg, "--payload-only")) {
  74.             payload_only = true;
  75.         } else if (atom_path == NULL) {
  76.             atom_path = arg;
  77.         } else if (input_filename == NULL) {
  78.             input_filename = arg;
  79.         } else if (output_filename == NULL) {
  80.             output_filename = arg;
  81.         } else {
  82.             fprintf(stderr, "ERROR: invalid command line argument (%s)n", arg);
  83.             return 1;
  84.         }
  85.     }
  86.     // check arguments
  87.     if (atom_path == NULL) {
  88.         fprintf(stderr, "ERROR: missing atom pathn");
  89.         return 1;
  90.     }
  91.     if (input_filename == NULL) {
  92.         fprintf(stderr, "ERROR: missing input filenamen");
  93.         return 1;
  94.     }
  95.     if (output_filename == NULL) {
  96.         fprintf(stderr, "ERROR: missing output filenamen");
  97.         return 1;
  98.     }
  99. // create the input stream
  100.     AP4_ByteStream* input;
  101.     try {
  102.         input = new AP4_FileByteStream(input_filename,
  103.                         AP4_FileByteStream::STREAM_MODE_READ);
  104.     } catch (AP4_Exception) {
  105.         fprintf(stderr, "ERROR: cannot open input file (%s)n", input_filename);
  106.         return 1;
  107.     }
  108.     // parse the atoms
  109.     AP4_AtomParent top_level;
  110.     AP4_Atom* atom;
  111.     AP4_AtomFactory& atom_factory = AP4_AtomFactory::DefaultFactory;
  112.     while (atom_factory.CreateAtomFromStream(*input, atom) == AP4_SUCCESS) {
  113.         top_level.AddChild(atom);
  114.     }
  115.     // release the input
  116.     input->Release();
  117.     // find the atom
  118.     atom = top_level.FindChild(atom_path);
  119.     if (atom == NULL) {
  120.         fprintf(stderr, "ERROR: atom '%s' not foundn", atom_path);
  121.         return 1;
  122.     }
  123.     // create the output stream
  124.     AP4_ByteStream* output;
  125.     try {
  126.         output = new AP4_FileByteStream(output_filename,
  127.                          AP4_FileByteStream::STREAM_MODE_WRITE);
  128.     } catch (AP4_Exception) {
  129.         fprintf(stderr, "ERROR: cannot open output file (%s)n", output_filename);
  130.         return 1;
  131.     }
  132.     // write the atom
  133.     if (payload_only) {
  134.         atom->WriteFields(*output);
  135.     } else {
  136.         atom->Write(*output);
  137.     }
  138.     // cleanup
  139.     output->Release();
  140.     return 0;
  141. }