2015-02-05 00:02:59 -06:00
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief Source file for ImageWriter class
|
|
|
|
|
* @author Jonathan Thomas <jonathan@openshot.org>, Fabrice Bellard
|
|
|
|
|
*
|
2019-06-09 08:31:04 -04:00
|
|
|
* @ref License
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* LICENSE
|
2015-02-05 00:02:59 -06:00
|
|
|
*
|
2019-06-11 06:51:37 -04:00
|
|
|
* Copyright (c) 2008-2019 OpenShot Studios, LLC, Fabrice Bellard
|
2015-02-05 00:02:59 -06:00
|
|
|
* (http://www.openshotstudios.com). This file is part of
|
|
|
|
|
* OpenShot Library (http://www.openshot.org), an open-source project
|
|
|
|
|
* dedicated to delivering high quality video editing and animation solutions
|
|
|
|
|
* to the world.
|
|
|
|
|
*
|
|
|
|
|
* This file is originally based on the Libavformat API example, and then modified
|
|
|
|
|
* by the libopenshot project.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is free software: you can redistribute it
|
|
|
|
|
* and/or modify it under the terms of the GNU Lesser General Public License
|
|
|
|
|
* as published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is distributed in the hope that it will be
|
|
|
|
|
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
Add backwards-compatible Imagemagick 7 support (#252)
* Add ImageMagick 7 compatibility
A new header, `imclude/MagickUtilities.h`, is created to hold the
compatibility `#define`s.
The image-conversion code in `src/Frame.cpp` received the only
major changes — instead of doing the export by hand (and having
to account for changes in the underlying API), it uses the
`MagickCore::ExportImagePixels()` function which does basically
the same work, but accounts for all of the API changes for us.
The API of that function is _unchanged_ from IM6 to IM7.
TODO: `MagickCore::ExportImagePixels()` will return an `exception`
struct if it encounters any problems. Currently the code ignores
that, which it should not.
* Add ImageMagick 7 compatibility
A new header, `imclude/MagickUtilities.h`, is created to hold the
compatibility `#define`s.
The image-conversion code in `src/Frame.cpp` received the only
major changes — instead of doing the export by hand (and having
to account for changes in the underlying API), it uses the
`MagickCore::ExportImagePixels()` function which does basically
the same work, but accounts for all of the API changes for us.
The API of that function is _unchanged_ from IM6 to IM7.
TODO: `MagickCore::ExportImagePixels()` will return an `exception`
struct if it encounters any problems. Currently the code ignores
that, which it should not.
Thanks @ferdnyc
2019-06-21 01:07:49 -04:00
|
|
|
//Require ImageMagick support
|
|
|
|
|
#ifdef USE_IMAGEMAGICK
|
|
|
|
|
|
2015-02-05 00:02:59 -06:00
|
|
|
#include "../include/ImageWriter.h"
|
|
|
|
|
|
|
|
|
|
using namespace openshot;
|
|
|
|
|
|
2017-10-26 18:44:35 -05:00
|
|
|
ImageWriter::ImageWriter(string path) :
|
2015-02-05 00:02:59 -06:00
|
|
|
path(path), cache_size(8), is_writing(false), write_video_count(0), image_quality(75), number_of_loops(1),
|
|
|
|
|
combine_frames(true), is_open(false)
|
|
|
|
|
{
|
|
|
|
|
// Disable audio & video (so they can be independently enabled)
|
|
|
|
|
info.has_audio = false;
|
|
|
|
|
info.has_video = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set video export options
|
|
|
|
|
void ImageWriter::SetVideoOptions(string format, Fraction fps, int width, int height,
|
|
|
|
|
int quality, int loops, bool combine)
|
|
|
|
|
{
|
|
|
|
|
// Set frames per second (if provided)
|
|
|
|
|
info.fps.num = fps.num;
|
|
|
|
|
info.fps.den = fps.den;
|
|
|
|
|
|
|
|
|
|
// Set image magic properties
|
|
|
|
|
image_quality = quality;
|
|
|
|
|
number_of_loops = loops;
|
|
|
|
|
combine_frames = combine;
|
|
|
|
|
info.vcodec = format;
|
|
|
|
|
|
|
|
|
|
// Set the timebase (inverse of fps)
|
|
|
|
|
info.video_timebase.num = info.fps.den;
|
|
|
|
|
info.video_timebase.den = info.fps.num;
|
|
|
|
|
|
|
|
|
|
if (width >= 1)
|
|
|
|
|
info.width = width;
|
|
|
|
|
if (height >= 1)
|
|
|
|
|
info.height = height;
|
|
|
|
|
|
|
|
|
|
info.video_bit_rate = quality;
|
|
|
|
|
|
|
|
|
|
// Calculate the DAR (display aspect ratio)
|
|
|
|
|
Fraction size(info.width * info.pixel_ratio.num, info.height * info.pixel_ratio.den);
|
|
|
|
|
|
|
|
|
|
// Reduce size fraction
|
|
|
|
|
size.Reduce();
|
|
|
|
|
|
|
|
|
|
// Set the ratio based on the reduced fraction
|
|
|
|
|
info.display_ratio.num = size.num;
|
|
|
|
|
info.display_ratio.den = size.den;
|
|
|
|
|
|
2016-04-21 01:39:17 -05:00
|
|
|
ZmqLogger::Instance()->AppendDebugMethod("ImageWriter::SetVideoOptions (" + format + ")", "width", width, "height", height, "size.num", size.num, "size.den", size.den, "fps.num", fps.num, "fps.den", fps.den);
|
2015-02-05 00:02:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Open the writer
|
2017-10-26 18:44:35 -05:00
|
|
|
void ImageWriter::Open()
|
2015-02-05 00:02:59 -06:00
|
|
|
{
|
|
|
|
|
is_open = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add a frame to the queue waiting to be encoded.
|
2017-10-26 18:44:35 -05:00
|
|
|
void ImageWriter::WriteFrame(std::shared_ptr<Frame> frame)
|
2015-02-05 00:02:59 -06:00
|
|
|
{
|
|
|
|
|
// Check for open reader (or throw exception)
|
|
|
|
|
if (!is_open)
|
2015-06-01 00:20:14 -07:00
|
|
|
throw WriterClosed("The ImageWriter is closed. Call Open() before calling this method.", path);
|
2015-02-05 00:02:59 -06:00
|
|
|
|
|
|
|
|
|
2015-06-01 00:20:14 -07:00
|
|
|
// Copy and resize image
|
2017-08-20 17:37:39 -05:00
|
|
|
std::shared_ptr<Magick::Image> frame_image = frame->GetMagickImage();
|
2015-06-01 00:20:14 -07:00
|
|
|
frame_image->magick( info.vcodec );
|
|
|
|
|
frame_image->backgroundColor(Magick::Color("none"));
|
Add backwards-compatible Imagemagick 7 support (#252)
* Add ImageMagick 7 compatibility
A new header, `imclude/MagickUtilities.h`, is created to hold the
compatibility `#define`s.
The image-conversion code in `src/Frame.cpp` received the only
major changes — instead of doing the export by hand (and having
to account for changes in the underlying API), it uses the
`MagickCore::ExportImagePixels()` function which does basically
the same work, but accounts for all of the API changes for us.
The API of that function is _unchanged_ from IM6 to IM7.
TODO: `MagickCore::ExportImagePixels()` will return an `exception`
struct if it encounters any problems. Currently the code ignores
that, which it should not.
* Add ImageMagick 7 compatibility
A new header, `imclude/MagickUtilities.h`, is created to hold the
compatibility `#define`s.
The image-conversion code in `src/Frame.cpp` received the only
major changes — instead of doing the export by hand (and having
to account for changes in the underlying API), it uses the
`MagickCore::ExportImagePixels()` function which does basically
the same work, but accounts for all of the API changes for us.
The API of that function is _unchanged_ from IM6 to IM7.
TODO: `MagickCore::ExportImagePixels()` will return an `exception`
struct if it encounters any problems. Currently the code ignores
that, which it should not.
Thanks @ferdnyc
2019-06-21 01:07:49 -04:00
|
|
|
MAGICK_IMAGE_ALPHA(frame_image, true);
|
2015-06-01 00:20:14 -07:00
|
|
|
frame_image->quality(image_quality);
|
|
|
|
|
frame_image->animationDelay(info.video_timebase.ToFloat() * 100);
|
|
|
|
|
frame_image->animationIterations(number_of_loops);
|
2015-02-05 00:02:59 -06:00
|
|
|
|
2015-06-01 00:20:14 -07:00
|
|
|
// Calculate correct DAR (display aspect ratio)
|
|
|
|
|
int new_width = info.width;
|
|
|
|
|
int new_height = info.height * frame->GetPixelRatio().Reciprocal().ToDouble();
|
2015-02-05 00:02:59 -06:00
|
|
|
|
2015-06-01 00:20:14 -07:00
|
|
|
// Resize image
|
|
|
|
|
Magick::Geometry new_size(new_width, new_height);
|
|
|
|
|
new_size.aspect(true);
|
|
|
|
|
frame_image->resize(new_size);
|
2015-02-05 00:02:59 -06:00
|
|
|
|
2015-06-01 00:20:14 -07:00
|
|
|
|
|
|
|
|
// Put resized frame in vector (waiting to be written)
|
|
|
|
|
frames.push_back(*frame_image.get());
|
2015-02-05 00:02:59 -06:00
|
|
|
|
|
|
|
|
// Keep track of the last frame added
|
|
|
|
|
last_frame = frame;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Write a block of frames from a reader
|
2017-10-26 18:44:35 -05:00
|
|
|
void ImageWriter::WriteFrame(ReaderBase* reader, int64_t start, int64_t length)
|
2015-02-05 00:02:59 -06:00
|
|
|
{
|
2019-07-03 14:14:02 -04:00
|
|
|
ZmqLogger::Instance()->AppendDebugMethod("ImageWriter::WriteFrame (from Reader)", "start", start, "length", length);
|
2015-02-05 00:02:59 -06:00
|
|
|
|
|
|
|
|
// Loop through each frame (and encoded it)
|
2017-09-28 16:03:01 -05:00
|
|
|
for (int64_t number = start; number <= length; number++)
|
2015-02-05 00:02:59 -06:00
|
|
|
{
|
|
|
|
|
// Get the frame
|
2017-08-20 17:37:39 -05:00
|
|
|
std::shared_ptr<Frame> f = reader->GetFrame(number);
|
2015-02-05 00:02:59 -06:00
|
|
|
|
|
|
|
|
// Encode frame
|
|
|
|
|
WriteFrame(f);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Close the writer and encode/output final image to the disk.
|
|
|
|
|
void ImageWriter::Close()
|
|
|
|
|
{
|
|
|
|
|
// Write frame's image to file
|
|
|
|
|
Magick::writeImages(frames.begin(), frames.end(), path, combine_frames);
|
|
|
|
|
|
|
|
|
|
// Clear frames vector
|
|
|
|
|
frames.clear();
|
|
|
|
|
|
|
|
|
|
// Reset frame counters
|
|
|
|
|
write_video_count = 0;
|
|
|
|
|
|
|
|
|
|
// Close writer
|
|
|
|
|
is_open = false;
|
|
|
|
|
|
2019-07-03 14:14:02 -04:00
|
|
|
ZmqLogger::Instance()->AppendDebugMethod("ImageWriter::Close");
|
2015-02-05 00:02:59 -06:00
|
|
|
}
|
|
|
|
|
|
Add backwards-compatible Imagemagick 7 support (#252)
* Add ImageMagick 7 compatibility
A new header, `imclude/MagickUtilities.h`, is created to hold the
compatibility `#define`s.
The image-conversion code in `src/Frame.cpp` received the only
major changes — instead of doing the export by hand (and having
to account for changes in the underlying API), it uses the
`MagickCore::ExportImagePixels()` function which does basically
the same work, but accounts for all of the API changes for us.
The API of that function is _unchanged_ from IM6 to IM7.
TODO: `MagickCore::ExportImagePixels()` will return an `exception`
struct if it encounters any problems. Currently the code ignores
that, which it should not.
* Add ImageMagick 7 compatibility
A new header, `imclude/MagickUtilities.h`, is created to hold the
compatibility `#define`s.
The image-conversion code in `src/Frame.cpp` received the only
major changes — instead of doing the export by hand (and having
to account for changes in the underlying API), it uses the
`MagickCore::ExportImagePixels()` function which does basically
the same work, but accounts for all of the API changes for us.
The API of that function is _unchanged_ from IM6 to IM7.
TODO: `MagickCore::ExportImagePixels()` will return an `exception`
struct if it encounters any problems. Currently the code ignores
that, which it should not.
Thanks @ferdnyc
2019-06-21 01:07:49 -04:00
|
|
|
#endif //USE_IMAGEMAGICK
|