Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
5.2 KiB

  1. /****************************************************************************
  2. *
  3. * avicap.rc
  4. *
  5. * Resources
  6. *
  7. * Microsoft Video for Windows Sample Capture Class
  8. *
  9. * Copyright (c) 1992, 1993 Microsoft Corporation. All Rights Reserved.
  10. *
  11. * You have a royalty-free right to use, modify, reproduce and
  12. * distribute the Sample Files (and/or any modified version) in
  13. * any way you find useful, provided that you agree that
  14. * Microsoft has no warranty obligations or liability for any
  15. * Sample Application Files which are modified.
  16. *
  17. ***************************************************************************/
  18. #include <windows.h>
  19. #include <verinfo.h>
  20. #include "avicap.h"
  21. #include "avicapi.h"
  22. #include "avicap.rcv"
  23. SAVEAVIFILTER RCDATA
  24. BEGIN
  25. "Microsoft AVI\0",
  26. "*.avi\0",
  27. "\0"
  28. END
  29. OPENAVIFILTER RCDATA
  30. BEGIN
  31. "Microsoft AVI\0",
  32. "*.avi\0",
  33. "All Files\0",
  34. "*.*\0",
  35. "\0"
  36. END
  37. SAVEDIBFILTER RCDATA
  38. BEGIN
  39. "Microsoft Windows DIB\0",
  40. "*.dib;*.bmp\0",
  41. "\0"
  42. END
  43. STRINGTABLE
  44. BEGIN
  45. IDS_CAP_BEGIN "Capture Start"
  46. IDS_CAP_END "Capture End"
  47. IDS_CAP_INFO "%s"
  48. IDS_CAP_DEFAVIEXT "avi"
  49. IDS_CAP_DEFPALEXT "pal"
  50. IDS_CAP_ERRORPALOPEN "Error opening palette '%s'"
  51. IDS_CAP_ERRORPALSAVE "Error saving palette '%s'"
  52. IDS_CAP_ERRORDIBSAVE "Error saving frame '%s'"
  53. IDS_CAP_CANTOPEN "Cannot open '%s'"
  54. IDS_CAP_OUTOFMEM "Out of memory"
  55. IDS_CAP_FILEEXISTS "File '%s' exists -- overwrite it?"
  56. IDS_CAP_VIDEDITERR "An error occurred while trying to run VidEdit."
  57. IDS_CAP_READONLYFILE "The file '%s' is a read-only file."
  58. IDS_CAP_WRITEERROR "Unable to write to file '%s'.\nDisk may be full."
  59. IDS_CAP_NODISKSPACE "There is no space to create a capture file on the specified device."
  60. IDS_CAP_SETFILESIZE "Set File Size"
  61. IDS_CAP_SAVEASPERCENT "SaveAs: %2ld%% Hit Escape to abort."
  62. IDS_CAP_WAVE_OPEN_ERROR "Error: Cannot open the wave input device.\nCheck sample size, frequency, and channels."
  63. IDS_CAP_WAVE_ALLOC_ERROR "Error: Out of memory for wave buffers."
  64. IDS_CAP_WAVE_PREPARE_ERROR "Error: Cannot prepare wave buffers."
  65. IDS_CAP_WAVE_ADD_ERROR "Error: Cannot add wave buffers."
  66. IDS_CAP_WAVE_SIZE_ERROR "Error: Bad wave size."
  67. IDS_CAP_VIDEO_OPEN_ERROR "Error: Cannot open the video input device."
  68. IDS_CAP_VIDEO_ALLOC_ERROR "Error: Out of memory for video buffers."
  69. IDS_CAP_VIDEO_PREPARE_ERROR "Error: Cannot prepare video buffers."
  70. IDS_CAP_VIDEO_ADD_ERROR "Error: Cannot add video buffers."
  71. IDS_CAP_VIDEO_SIZE_ERROR "Error: Bad video size."
  72. IDS_CAP_FILE_OPEN_ERROR "Error: Cannot open capture file."
  73. IDS_CAP_FILE_WRITE_ERROR "Error: Cannot write to capture file. Disk may be full."
  74. IDS_CAP_RECORDING_ERROR "Error: Cannot write to capture file. Data rate too high or disk full."
  75. IDS_CAP_RECORDING_ERROR2 "Error while recording"
  76. IDS_CAP_NO_FRAME_CAP_ERROR "Warning: No frames captured.\nConfirm that vertical sync interrupts\nare configured and enabled."
  77. IDS_CAP_NO_PALETTE_WARN "Warning: Using default palette."
  78. IDS_CAP_MCI_CONTROL_ERROR "Error: Unable to access MCI device."
  79. IDS_CAP_MCI_CANT_STEP_ERROR "Error: Unable to step MCI device."
  80. IDS_CAP_NO_AUDIO_CAP_ERROR "Error: No audio data captured.\nCheck audio card settings."
  81. IDS_CAP_AVI_INIT_ERROR "Error: Unable to initialize for capture."
  82. IDS_CAP_AVI_DRAWDIB_ERROR "Error: Unable to draw this data format."
  83. IDS_CAP_COMPRESSOR_ERROR "Error: Unable to initialize compressor."
  84. IDS_CAP_AUDIO_DROP_ERROR "Error: Audio data was lost during capture, reduce capture rate."
  85. /* status */
  86. IDS_CAP_STAT_LIVE_MODE "Live window"
  87. IDS_CAP_STAT_OVERLAY_MODE "Overlay window"
  88. IDS_CAP_STAT_CAP_INIT "Setting up for capture - Please wait"
  89. IDS_CAP_STAT_CAP_FINI "Finished capture, now writing frame %ld"
  90. IDS_CAP_STAT_PALETTE_BUILD "Building palette map"
  91. IDS_CAP_STAT_OPTPAL_BUILD "Computing optimal palette"
  92. IDS_CAP_STAT_I_FRAMES "%d frames"
  93. IDS_CAP_STAT_L_FRAMES "%ld frames"
  94. IDS_CAP_STAT_CAP_L_FRAMES "Captured %ld frames"
  95. IDS_CAP_STAT_CAP_AUDIO "Capturing audio"
  96. IDS_CAP_STAT_VIDEOCURRENT "Captured %ld frames (%ld dropped) %d.%03d sec."
  97. IDS_CAP_STAT_VIDEOAUDIO "Captured %d.%03d sec. %ld frames (%ld dropped) (%d.%03d fps). %ld audio bytes (%d,%03d sps)"
  98. IDS_CAP_STAT_VIDEOONLY "Captured %d.%03d sec. %ld frames (%ld dropped) (%d.%03d fps)"
  99. IDS_CAP_STAT_FRAMESDROPPED "Dropped %ld of %ld frames (%d.%02d%%) during capture."
  100. /* capture dialog strings */
  101. IDS_CAP_SEQ_MSGSTART "Select OK to start capture\nof video sequence\nto %s."
  102. IDS_CAP_SEQ_MSGSTOP "Hit ESCAPE or click to end capture"
  103. IDS_CAP_RTL "0=rtl"
  104. END