*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->IRIX man pages -> movie/mvExportFlattenedFile (3d)              
Title
Content
Arch
Section
 

Contents


mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)


NAME    [Toc]    [Back]

     mvExportFlattenedFile - export a movie to a given file format

SYNOPSIS    [Toc]    [Back]

     #include <dmedia/moviefile.h>

     typedef enum __MVmessage
     {
	 MV_BEGIN,
	 MV_IN_PROGRESS,
	 MV_END
     } MVmessage;

     typedef enum __MVoperation
     {
	 MV_COPY_MOVIE_AT_TIME,
	 MV_COPY_TRACK_AT_TIME,
	 MV_EXPORT_FLATTENED_FILE
     } MVoperation;

     typedef DMstatus (*MVprogressfunc)(
	 MVid movieBeingProcessed,
	 MVmessage message,
	 MVoperation operation,
	 float fraction,
	 int clientData);

     DMstatus mvExportFlattenedFile(
	 MVid srcMovie,
	 const char* dstFileName,
	 DMparams* dstFileFormat,
	 DMparams* imageFormat,
	 DMparams* audioFormat,
	 unsigned int exportFlags,
	 MVprogressfunc	progressCallback,
	 int progressClientData);

PARAMETERS    [Toc]    [Back]

     srcMovie		The movie that contains	the content to be exported.
			This may be an arbitrarily complex movie, with
			multiple image tracks and multiple audio tracks.

     dstFileName	The pathname of	the output file	that will be created.

     dstFileFormat	Specifies what type of file to create (in parameter
			MV_FILE_FORMAT), plus any format-specific details.
			Valid MV_FILE_FORMATs include MV_FORMAT_QT,
			MV_FORMAT_MPEG1, MV_FORMAT_AVI,	MV_FORMAT_DIF, and
			MV_FORMAT_SGI_3.




									Page 1






mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)



     imageFormat	The description	of the format of the images in the
			output file.  (See dmSetImageDefaults.)	 This
			parameter can be NULL if no image track	is wanted in
			the destination	file.

     audioFormat	The description	of the format of the audio in the
			output file.  (See dmSetAudioDefaults.)	 This
			parameter can be NULL if no audio track	is wanted in
			the destination	file.

     exportFlags	Flags that control when	to recompress images, and when
			to use gaps.  The safest value for this	parameter is
			zero.  Valid flags include MV_EXPORT_USE_GAPS (to
			achieve	smaller	files in some cases),
			MV_EXPORT_RECOMP_FEWEST	(to avoid recompressing
			existing images), MV_EXPORT_RECOMP_CHANGED_Q (to
			recompress only	when quality settings have changed),
			and MV_EXPORT_RECOMP_ALL to force recompression	of all
			images.

     progressCallback	This function is called	periodically during the
			creation of the	output movie to	report progress.

     progressClientData	This is	passed into the	progressCallback function.  It
			is a convenient	hook for clients to store data in.

DESCRIPTION    [Toc]    [Back]

     This function will	create a "flattened" movie from	any arbitrarily
     complex movie.  In	most cases, the	flattened movie	will have exactly one
     image track and exactly one audio track.  In the case of MV_FORMAT_MPEG1
     and MV_FORMAT_DIF,	a single stream	of multiplexed data is created which
     adheres to	those respective standards.  mvExportFlattenedFile will	create
     the named output file, and	do any necessary conversion from the format of
     the input movie file.


     DM_SUCCESS	is returned if the output file was created correctly.  If
     something goes wrong, DM_FAILURE will be returned and no output file will
     be	created.  If the output	file already existed, it may be	destroyed even
     on	failure.


     During processing,	the progress function pointed at by progressCallback
     is	called.	 On the	first call, the	message	is MV_BEGIN.  Then there are
     multiple MV_IN_PROGRESS calls where fraction (between 0.0 and 1.0)
     indicates what fraction of	the processing has been	completed.  On the
     last call,	the message is set to MV_END.







									Page 2






mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)



     If	the progress callback returns DM_SUCCESS, the processing will
     continue; if it returns DM_FAILURE	processing will	immediately stop, and
     the output	file will not be created, and DM_FAILURE will be returned by
     the mvExportFlattenedFile call.  In this case, mvGetErrno() will be equal
     to	MV_USER_CANCELLED_PROC upon returning from the mvExportFlattenedFile
     call.  You	can use	this functionality to implement	a progress dialog with
     a cancel button so	users can cancel out of	long exports.


     There are choices about when to recompress	images if the input movie and
     output file use the same compression scheme; these	are controlled by the
     bits in exportFlags.  If MV_EXPORT_RECOMP_ALL is set, all frames will be
     recompressed, no matter what.  MV_EXPORT_RECOMP_CHANGED_Q says to
     recompress	only when the quality settings are different (which allows
     better bit-rate control).	MV_EXPORT_RECOMP_FEWEST	says to	never
     recompress	when the source	images use the same compression	scheme.


     If	the MV_EXPORT_USE_GAPS bit is set in exportFlags, gaps will be noted
     in	the output file, instead of compressing	black images.  (This is
     supported only by the QuickTime file format.)

MOVIE FILES    [Toc]    [Back]

     The file format parameter MV_FILE_FORMAT must be one of:  MV_FORMAT_QT,
     MV_FORMAT_AVI, MV_FORMAT_MPEG1, MV_FORMAT_DIF, or MV_FORMAT_SGI_3.


     The following sections describe the allowed parameter settings for	the
     different file formats.  Any image/audio parameter	that is	not explicitly
     listed must be set	to the default value obtained from dmSetImageDefaults
     or	dmSetAudioDefaults.

QUICKTIME FILES    [Toc]    [Back]

     The file format parameters	should just include MV_FORMAT_QT.  No other
     parameters	are supported.

     The image format parameters must be set as	follows:


     DM_IMAGE_WIDTH    [Toc]    [Back]
	  Dependent on the DM_IMAGE_COMPRESSION.  In most cases	this can be
	  any arbitrary	value.	Here are some exceptions: for
	  DM_IMAGE_QT_MJPEGA, and DM_IMAGE_JPEG	width must be a	multiple of
	  16.  For DM_IMAGE_QT_VIDEO, DM_IMAGE_QT_ANIM,	DM_IMAGE_QT_CVID, and
	  DM_IMAGE_INDEO width must be a multiple of 4.

     DM_IMAGE_HEIGHT    [Toc]    [Back]
	  Dependent on the DM_IMAGE_COMPRESSION.  In most cases	this can be
	  any arbitrary	value.	Here are some exceptions: For
	  DM_IMAGE_QT_MJPEGA, and DM_IMAGE_JPEG, height	must be	a multiple of



									Page 3






mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)



	  8.  For DM_IMAGE_QT_VIDEO, DM_IMAGE_QT_ANIM, DM_IMAGE_QT_CVID, and
	  DM_IMAGE_INDEO, height must be a multiple of 4.

     DM_IMAGE_RATE    [Toc]    [Back]
	  Can be almost	any value.  Some examples include: 29.97, 25.0,	15.0,
	  and 10.0.

     DM_IMAGE_COMPRESSION    [Toc]    [Back]
	  Valid	settings include DM_IMAGE_UNCOMPRESSED,	DM_IMAGE_JPEG,
	  DM_IMAGE_QT_MJPEGA, DM_IMAGE_DV, DM_IMAGE_DVCPRO, DM_IMAGE_RICE,
	  DM_IMAGE_QT_VIDEO, DM_IMAGE_QT_ANIM, DM_IMAGE_QT_CVID, and
	  DM_IMAGE_INDEO.

     DM_IMAGE_ORIENTATION    [Toc]    [Back]
	  In general, this should be set to DM_IMAGE_TOP_TO_BOTTOM to produce
	  the most portable QuickTime files.  Only specify
	  DM_IMAGE_BOTTOM_TO_TOP if you	are absolutely sure you	know what you
	  are doing.

     DM_IMAGE_INTERLACING    [Toc]    [Back]
	  In general, this should be set to DM_IMAGE_NONINTERLACED.  However,
	  if the DM_IMAGE_COMPRESSION is set to	DM_IMAGE_QT_MJPEGA, it should
	  be set to DM_IMAGE_INTERLACED_ODD for	NTSC size frames, and
	  DM_IMAGE_INTERLACED_EVEN for PAL size	frames.	 Other compression
	  types	which support interlacing include DM_IMAGE_UNCOMPRESSED	and
	  DM_IMAGE_JPEG.

     DM_IMAGE_PACKING    [Toc]    [Back]
	  This is highly codec dependent.  For DM_IMAGE_QT_MJPEGA and
	  DM_IMAGE_JPEG, it must be set	to DM_IMAGE_PACKING_CbYCrY (4:1:1).
	  Concerning an	image compression of DM_IMAGE_DV or DM_IMAGE_DVCPRO,
	  it must be set to DM_IMAGE_PACKING_YCrCbYYY (4:1:1) for NTSC DV,
	  NTSC DVCPRO, and PAL DVCPRO, and DM_IMAGE_PACKING_YCrYYCrYYCbYYCbY
	  (4:2:0) for PAL DV.  See dm_dv(3dm) for a complete discussion	on DV
	  packing issues.  For DM_IMAGE_UNCOMPRESSED, packing can be
	  practically anything,	including: DM_IMAGE_PACKING_RGB,
	  DM_IMAGE_PACKING_RGBX, DM_IMAGE_PACKING_XBGR,	DM_IMAGE_PACKING_XRGB,
	  DM_IMAGE_PACKING_BGRX, DM_IMAGE_PACKING_CbYCr,
	  DM_IMAGE_PACKING_CbYCrY, and DM_IMAGE_PACKING_CbYCrYYY.  For
	  DM_IMAGE_QT_CVID, packing must be DM_IMAGE_PACKING_CbYCrY, and for
	  DM_IMAGE_QT_ANIM packing can be one of: DM_IMAGE_PACKING_RGBX,
	  DM_IMAGE_PACKING_XBGR, DM_IMAGE_PACKING_XRGB,	or
	  DM_IMAGE_PACKING_BGRX.

     DM_IMAGE_BITRATE    [Toc]    [Back]
	  This is highly codec dependent.  Only	some codecs support this
	  parameter.  If a codec does support this parameter, it is the	number
	  of bits per second the resulting stream is.  Some example values
	  include: 600,000 (a good bitrate for 4X CDROM	drives)	and 3,000,000
	  for disk based playback.





									Page 4






mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)



     DM_IMAGE_QUALITY_SPATIAL    [Toc]    [Back]
	  This is highly codec dependent.  If a	codec supports this parameter,
	  the value of 0.5 allows the codec to use the default spatial
	  quality.

     DM_IMAGE_QUALITY_TEMPORAL    [Toc]    [Back]
	  This is highly codec dependent.  If a	codec supports this parameter,
	  the value of 0.5 allows the codec to use the default temporal
	  quality.

     DM_IMAGE_KEYFRAME_DISTANCE    [Toc]    [Back]
	  If a codec supports this, this is the	number of frames between
	  keyframes.

     DM_IMAGE_REFFRAME_DISTANCE.
	  If a codec supports this, this is the	number of frames between
	  reference frames.


     The audio format parameters in audioFormat	must be	set as follows:


     DM_AUDIO_FORMAT    [Toc]    [Back]
	  It is	recommended to always set this to DM_AUDIO_TWOS_COMPLEMENT.

     DM_AUDIO_WIDTH    [Toc]    [Back]
	  Can be 8, 16,	or 24.	A good default is 16.

     DM_AUDIO_RATE    [Toc]    [Back]
	  This can be almost any value,	including 48000, 44100,	32000, 22050,
	  16000, 11127,	and 8000.

     DM_AUDIO_CHANNELS    [Toc]    [Back]
	  1 for	mono, 2	for Stereo.

AVI FILES    [Toc]    [Back]

     The file format parameters	should just include MV_FORMAT_AVI.  No other
     parameters	are supported.

     The image format parameters must be set as	follows:


     DM_IMAGE_WIDTH    [Toc]    [Back]
	  Dependent on the DM_IMAGE_COMPRESSION.  In most cases	this can be
	  any arbitrary	value.	Here are some exceptions: for DM_IMAGE_JPEG
	  width	must be	a multiple of 16.

     DM_IMAGE_HEIGHT    [Toc]    [Back]
	  Dependent on the DM_IMAGE_COMPRESSION.  In most cases	this can be
	  any arbitrary	value.	Here are some exceptions: For DM_IMAGE_JPEG,
	  height must be a multiple of 8.



									Page 5






mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)



     DM_IMAGE_RATE    [Toc]    [Back]
	  Can be almost	any value.  Some examples include: 29.97, 25.0,	15.0,
	  and 10.0.

     DM_IMAGE_COMPRESSION    [Toc]    [Back]
	  Valid	settings include DM_IMAGE_UNCOMPRESSED,	DM_IMAGE_JPEG,
	  DM_IMAGE_QT_CVID, and	DM_IMAGE_INDEO.

     DM_IMAGE_ORIENTATION    [Toc]    [Back]
	  In general, this should be set to DM_IMAGE_TOP_TO_BOTTOM to produce
	  the most portable QuickTime files.  Only specify
	  DM_IMAGE_BOTTOM_TO_TOP if you	are absolutely sure you	know what you
	  are doing.

     DM_IMAGE_INTERLACING    [Toc]    [Back]
	  In general, this should be set to DM_IMAGE_NONINTERLACED.  However,
	  if the DM_IMAGE_COMPRESSION is set to	DM_IMAGE_JPEG or
	  DM_IMAGE_UNCOMPRESSED, it can	be set to DM_IMAGE_INTERLACED_ODD for
	  NTSC size frames, and	DM_IMAGE_INTERLACED_EVEN for PAL size frames.

     DM_IMAGE_PACKING    [Toc]    [Back]
	  This is highly codec dependent.  For DM_IMAGE_JPEG, it must be set
	  to DM_IMAGE_PACKING_CbYCrY (4:1:1).  For DM_IMAGE_UNCOMPRESSED,
	  packing can be practically anything, including:
	  DM_IMAGE_PACKING_RGB,	DM_IMAGE_PACKING_RGBX, DM_IMAGE_PACKING_XBGR,
	  DM_IMAGE_PACKING_XRGB, DM_IMAGE_PACKING_BGRX,
	  DM_IMAGE_PACKING_CbYCr, DM_IMAGE_PACKING_CbYCrY, and
	  DM_IMAGE_PACKING_CbYCrYYY.  For DM_IMAGE_QT_CVID, packing must be
	  DM_IMAGE_PACKING_CbYCrY.

     DM_IMAGE_BITRATE    [Toc]    [Back]
	  This is highly codec dependent.  Only	some codecs support this
	  parameter.  If a codec does support this parameter, it is the	number
	  of bits per second the resulting stream is.  Some example values
	  include: 600,000 (a good bitrate for 4X CDROM	drives)	and 3,000,000
	  for disk based playback.

     DM_IMAGE_QUALITY_SPATIAL    [Toc]    [Back]
	  This is highly codec dependent.  If a	codec supports this parameter,
	  the value of 0.5 allows the codec to use the default spatial
	  quality.

     DM_IMAGE_QUALITY_TEMPORAL    [Toc]    [Back]
	  This is highly codec dependent.  If a	codec supports this parameter,
	  the value of 0.5 allows the codec to use the default temporal
	  quality.

     DM_IMAGE_KEYFRAME_DISTANCE    [Toc]    [Back]
	  If a codec supports this, this is the	number of frames between
	  keyframes.





									Page 6






mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)



     DM_IMAGE_REFFRAME_DISTANCE.
	  If a codec supports this, this is the	number of frames between
	  reference frames.


     The audio format parameters in audioFormat	must be	set as follows:


     DM_AUDIO_FORMAT    [Toc]    [Back]
	  It is	recommended to always set this to DM_AUDIO_TWOS_COMPLEMENT.

     DM_AUDIO_WIDTH    [Toc]    [Back]
	  Can be 8, 16,	or 24.	A good default is 16.

     DM_AUDIO_RATE    [Toc]    [Back]
	  This can be almost any value,	including 48000, 44100,	32000, 22050,
	  16000, 11127,	and 8000.

     DM_AUDIO_CHANNELS    [Toc]    [Back]
	  1 for	mono, 2	for Stereo.



DIF FILES    [Toc]    [Back]

     The file format parameters	should just include MV_FORMAT_DIF.  No other
     parameters	are supported.


     The image format parameters must be set as	follows:

     DM_IMAGE_WIDTH must be 720

     DM_IMAGE_HEIGHT    [Toc]    [Back]
	  must be 480 for NTSC;	 576 for PAL

     DM_IMAGE_RATE    [Toc]    [Back]
	  must be 29.97	for NTSC; 25.0 for PAL

     DM_IMAGE_COMPRESSION    [Toc]    [Back]
	  must be either DM_IMAGE_DV or	DM_IMAGE_DVCPRO

     DM_IMAGE_ORIENTATION    [Toc]    [Back]
	  DM_IMAGE_TOP_TO_BOTTOM

     DM_IMAGE_INTERLACING    [Toc]    [Back]
	  DM_IMAGE_NONINTERLACED

     DM_IMAGE_ARRANGEMENT    [Toc]    [Back]
	  DM_IMAGE_FULL_FRAME





									Page 7






mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)



     DM_IMAGE_PACKING    [Toc]    [Back]
	  DM_IMAGE_PACKING_YCrCbYYY (4:1:1) for	NTSC DV, NTSC DVCPRO, and PAL
	  DVCPRO, and DM_IMAGE_PACKING_YCrYYCrYYCbYYCbY	(4:2:0)	for PAL	DV.
	  See dm_dv(3dm) for a complete	discussion on the DIF file format and
	  packing issues.


     The parameters that control quality and compression ratio are all ignored
     for DV: DM_IMAGE_BITRATE, DM_IMAGE_QUALITY_SPATIAL,
     DM_IMAGE_QUALITY_TEMPORAL,	DM_IMAGE_KEYFRAME_DISTANCE, and
     DM_IMAGE_REFFRAME_DISTANCE.


     The audio format parameters in audioFormat	must be	set as follows:


     DM_AUDIO_FORMAT    [Toc]    [Back]
	  DM_AUDIO_TWOS_COMPLEMENT

     DM_AUDIO_WIDTH    [Toc]    [Back]
	  16

     DM_AUDIO_RATE    [Toc]    [Back]
	  48000, 44100,	or 32000.  If the image	compression is
	  DM_IMAGE_DVCPRO, then	only 48000 is allowed.

     DM_AUDIO_CHANNELS    [Toc]    [Back]
	  1 for	mono, 2	for Stereo.  If	the image compression is
	  DM_IMAGE_DVCPRO, then	only Stereo is allowed.

     DM_AUDIO_COMPRESSION    [Toc]    [Back]
	  DM_AUDIO_DV


MPEG-1 FILES    [Toc]    [Back]

     The file format parameters	should just include MV_FORMAT_MPEG1.  No other
     parameters	are supported.


     The image format parameters must be set as	follows:

     DM_IMAGE_WIDTH Must be a multiple of 16.

     DM_IMAGE_HEIGHT    [Toc]    [Back]
	  Must be a multiple of	16

     DM_IMAGE_RATE    [Toc]    [Back]
	  Must be one of: 60.0,	59.94, 50.0, 30.0, 29.97, 25.0,	24.0, 23.976.






									Page 8






mvExportFlattenedFile(3dm)			    mvExportFlattenedFile(3dm)



     DM_IMAGE_COMPRESSION    [Toc]    [Back]
	  Must be DM_IMAGE_MPEG1

     DM_IMAGE_ORIENTATION    [Toc]    [Back]
	  Must be DM_IMAGE_TOP_TO_BOTTOM

     DM_IMAGE_PACKING    [Toc]    [Back]
	  Must be DM_IMAGE_PACKING_CbYCrYYY (4:2:0).

     DM_IMAGE_BITRATE    [Toc]    [Back]
	  The number of	bits per second	the resulting stream is.  Some example
	  values include: 600,000 (a good bitrate for 4X CDROM drives) and
	  3,000,000 for	disk based playback.

     DM_IMAGE_QUALITY_SPATIAL    [Toc]    [Back]
	  The value of 0.5 allows the codec to use the default spatial
	  quality.

     DM_IMAGE_QUALITY_TEMPORAL    [Toc]    [Back]
	  The value of 0.5 allows the codec to use the default temporal
	  quality.

     DM_IMAGE_KEYFRAME_DISTANCE    [Toc]    [Back]
	  The number of	frames between keyframes.

     DM_IMAGE_REFFRAME_DISTANCE.
	  The number of	frames between reference frames.


     The audio format parameters in audioFormat	must be	set as follows:


     DM_AUDIO_FORMAT    [Toc]    [Back]
	  DM_AUDIO_TWOS_COMPLEMENT

     DM_AUDIO_WIDTH    [Toc]    [Back]
	  Must be 16.

     DM_AUDIO_RATE    [Toc]    [Back]
	  48000, 44100,	or 32000.

     DM_AUDIO_CHANNELS    [Toc]    [Back]
	  1 for	mono, 2	for Stereo.

SEE ALSO    [Toc]    [Back]

      
      
     mvIntro(3dm), dm_dv(3dm), dmSetImageDefaults(3dm),
     dmSetAudioDefaults(3dm).


									PPPPaaaaggggeeee 9999
[ Back ]
 Similar pages
Name OS Title
mvOptimize IRIX optimize a movie file for playback after editing operations, or create a flattened movie file
mvIntro IRIX introduction to the Movie Libraries SYNOPSIS (Movie File Library) #include -lmoviefile SY
exportfs Tru64 Export an NFS file system
mvShowCurrentFrame IRIX Display current movie frame on screen for a movie instance
makemovie IRIX make a movie from movie, image, and audio files
DxfToIv IRIX converts an Autodesk Data Exchange File format (.DXF) file to Open Inventor 2.0 format
iflMT IRIX a multi-track movie file
mvGetBitrate IRIX get the stored bitrate of a movie file or track
pfs_xtab HP-UX directories to export to PFS clients
exports HP-UX directories to export to NFS clients
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service