OpenShot Library | libopenshot
0.3.3
|
This class uses the FFmpeg libraries, to write and encode video files and audio files. More...
#include <FFmpegWriter.h>
Public Member Functions | |
void | Close () |
Close the writer. More... | |
FFmpegWriter (const std::string &path) | |
Constructor for FFmpegWriter. Throws an exception on failure to open path. More... | |
bool | IsOpen () |
Determine if writer is open or closed. More... | |
void | Open () |
Open writer. More... | |
void | OutputStreamInfo () |
Output the ffmpeg info about this format, streams, and codecs (i.e. dump format) More... | |
void | PrepareStreams () |
Prepare & initialize streams and open codecs. This method is called automatically by the Open() method if this method has not yet been called. More... | |
void | RemoveScalers () |
Remove & deallocate all software scalers. More... | |
void | ResampleAudio (int sample_rate, int channels) |
Set audio resample options. More... | |
void | SetAudioOptions (bool has_audio, std::string codec, int sample_rate, int channels, openshot::ChannelLayout channel_layout, int bit_rate) |
Set audio export options. More... | |
void | SetAudioOptions (std::string codec, int sample_rate, int bit_rate) |
Set audio export options. More... | |
void | SetOption (openshot::StreamType stream, std::string name, std::string value) |
Set custom options (some codecs accept additional params). This must be called after the PrepareStreams() method, otherwise the streams have not been initialized yet. More... | |
void | SetVideoOptions (bool has_video, std::string codec, openshot::Fraction fps, int width, int height, openshot::Fraction pixel_ratio, bool interlaced, bool top_field_first, int bit_rate) |
Set video export options. More... | |
void | SetVideoOptions (std::string codec, int width, int height, openshot::Fraction fps, int bit_rate) |
Set video export options. More... | |
void | WriteFrame (openshot::ReaderBase *reader, int64_t start, int64_t length) |
Write a block of frames from a reader. More... | |
void | WriteFrame (std::shared_ptr< openshot::Frame > frame) |
Add a frame to the stack waiting to be encoded. More... | |
void | WriteHeader () |
Write the file header (after the options are set). This method is called automatically by the Open() method if this method has not yet been called. More... | |
void | WriteTrailer () |
Write the file trailer (after all frames are written). This is called automatically by the Close() method if this method has not yet been called. More... | |
Public Member Functions inherited from openshot::WriterBase | |
void | CopyReaderInfo (openshot::ReaderBase *reader) |
This method copy's the info struct of a reader, and sets the writer with the same info. More... | |
void | DisplayInfo (std::ostream *out=&std::cout) |
Display file information in the standard output stream (stdout) More... | |
std::string | Json () const |
Generate JSON string of this object. More... | |
Json::Value | JsonValue () const |
Generate Json::Value for this object. More... | |
void | SetJson (const std::string value) |
Load JSON string into this object. More... | |
void | SetJsonValue (const Json::Value root) |
Load Json::Value into this object. More... | |
WriterBase () | |
Constructor for WriterBase class, many things are initialized here. More... | |
virtual | ~WriterBase ()=default |
Static Public Member Functions | |
static bool | IsValidCodec (std::string codec_name) |
Determine if codec name is valid. More... | |
Additional Inherited Members | |
Public Attributes inherited from openshot::WriterBase | |
WriterInfo | info |
Information about the current media file. More... | |
This class uses the FFmpeg libraries, to write and encode video files and audio files.
All FFmpeg options can be set using the SetOption() method, and any Reader may be used to generate openshot::Frame objects needed for writing. Be sure to use valid bit rates, frame rates, and sample rates (each format / codec has a limited # of valid options).
Here is a more advanced example, which sets some additional (and optional) encoding options.
Definition at line 116 of file FFmpegWriter.h.
FFmpegWriter::FFmpegWriter | ( | const std::string & | path | ) |
Constructor for FFmpegWriter. Throws an exception on failure to open path.
path | The file path of the video file you want to open and read |
Definition at line 75 of file FFmpegWriter.cpp.
void FFmpegWriter::Close | ( | ) |
Close the writer.
Definition at line 967 of file FFmpegWriter.cpp.
Referenced by openshot::ChunkWriter::Close(), and openshot::ChunkWriter::WriteFrame().
|
inlinevirtual |
Determine if writer is open or closed.
Implements openshot::WriterBase.
Definition at line 218 of file FFmpegWriter.h.
|
static |
Determine if codec name is valid.
Definition at line 603 of file FFmpegWriter.cpp.
|
virtual |
void FFmpegWriter::OutputStreamInfo | ( | ) |
Output the ffmpeg info about this format, streams, and codecs (i.e. dump format)
Definition at line 2297 of file FFmpegWriter.cpp.
void FFmpegWriter::PrepareStreams | ( | ) |
Prepare & initialize streams and open codecs. This method is called automatically by the Open() method if this method has not yet been called.
Definition at line 615 of file FFmpegWriter.cpp.
Referenced by Open(), and openshot::ChunkWriter::WriteFrame().
void FFmpegWriter::RemoveScalers | ( | ) |
Remove & deallocate all software scalers.
Definition at line 2336 of file FFmpegWriter.cpp.
Referenced by Close().
void FFmpegWriter::ResampleAudio | ( | int | sample_rate, |
int | channels | ||
) |
Set audio resample options.
sample_rate | The number of samples per second of the audio |
channels | The number of audio channels |
Definition at line 2330 of file FFmpegWriter.cpp.
void FFmpegWriter::SetAudioOptions | ( | bool | has_audio, |
std::string | codec, | ||
int | sample_rate, | ||
int | channels, | ||
openshot::ChannelLayout | channel_layout, | ||
int | bit_rate | ||
) |
Set audio export options.
has_audio | Does this file need an audio stream? |
codec | The codec used to encode the audio for this file |
sample_rate | The number of audio samples needed in this file |
channels | The number of audio channels needed in this file |
channel_layout | The 'layout' of audio channels (i.e. mono, stereo, surround, etc...) |
bit_rate | The audio bit rate used during encoding |
Definition at line 286 of file FFmpegWriter.cpp.
Referenced by SetAudioOptions(), and openshot::ChunkWriter::WriteFrame().
void FFmpegWriter::SetAudioOptions | ( | std::string | codec, |
int | sample_rate, | ||
int | bit_rate | ||
) |
Set audio export options.
Enables the stream and configures a default 2-channel stereo layout.
codec | The codec used to encode the audio for this file |
sample_rate | The number of audio samples needed in this file |
bit_rate | The audio bit rate used during encoding |
Definition at line 323 of file FFmpegWriter.cpp.
void FFmpegWriter::SetOption | ( | openshot::StreamType | stream, |
std::string | name, | ||
std::string | value | ||
) |
Set custom options (some codecs accept additional params). This must be called after the PrepareStreams() method, otherwise the streams have not been initialized yet.
stream | The stream (openshot::StreamType) this option should apply to |
name | The name of the option you want to set (i.e. qmin, qmax, etc...) |
value | The new value of this option |
Definition at line 333 of file FFmpegWriter.cpp.
void FFmpegWriter::SetVideoOptions | ( | bool | has_video, |
std::string | codec, | ||
openshot::Fraction | fps, | ||
int | width, | ||
int | height, | ||
openshot::Fraction | pixel_ratio, | ||
bool | interlaced, | ||
bool | top_field_first, | ||
int | bit_rate | ||
) |
Set video export options.
has_video | Does this file need a video stream |
codec | The codec used to encode the images in this video |
fps | The number of frames per second |
width | The width in pixels of this video |
height | The height in pixels of this video |
pixel_ratio | The shape of the pixels represented as a openshot::Fraction (1x1 is most common / square pixels) |
interlaced | Does this video need to be interlaced? |
top_field_first | Which frame should be used as the top field? |
bit_rate | The video bit rate used during encoding |
Definition at line 163 of file FFmpegWriter.cpp.
Referenced by SetVideoOptions(), and openshot::ChunkWriter::WriteFrame().
void FFmpegWriter::SetVideoOptions | ( | std::string | codec, |
int | width, | ||
int | height, | ||
openshot::Fraction | fps, | ||
int | bit_rate | ||
) |
Set video export options.
Enables the stream and configures non-interlaced video with a 1:1 pixel aspect ratio.
codec | The codec used to encode the images in this video |
width | The width in pixels of this video |
height | The height in pixels of this video |
fps | The number of frames per second |
bit_rate | The video bit rate used during encoding |
Definition at line 276 of file FFmpegWriter.cpp.
|
virtual |
Write a block of frames from a reader.
reader | A openshot::ReaderBase object which will provide frames to be written |
start | The starting frame number of the reader |
length | The number of frames to write |
Implements openshot::WriterBase.
Definition at line 737 of file FFmpegWriter.cpp.
|
virtual |
Add a frame to the stack waiting to be encoded.
frame | The openshot::Frame object to write to this image |
Implements openshot::WriterBase.
Definition at line 677 of file FFmpegWriter.cpp.
Referenced by openshot::ChunkWriter::Close(), openshot::ChunkWriter::WriteFrame(), and WriteFrame().
void FFmpegWriter::WriteHeader | ( | ) |
Write the file header (after the options are set). This method is called automatically by the Open() method if this method has not yet been called.
Definition at line 632 of file FFmpegWriter.cpp.
Referenced by Open(), and openshot::ChunkWriter::WriteFrame().
void FFmpegWriter::WriteTrailer | ( | ) |
Write the file trailer (after all frames are written). This is called automatically by the Close() method if this method has not yet been called.
Definition at line 754 of file FFmpegWriter.cpp.
Referenced by openshot::ChunkWriter::Close(), Close(), and openshot::ChunkWriter::WriteFrame().