tsMuxer/tsMuxer/main.cpp

874 lines
37 KiB
C++

#include <fs/directory.h>
#include <fs/textfile.h>
#include <algorithm>
#include <iostream>
#include <vector>
#include "blank_patterns.h"
#include "blurayHelper.h"
#include "convertUTF.h"
#include "iso_writer.h"
#include "math.h"
#include "metaDemuxer.h"
#include "mpegStreamReader.h"
#include "muxerManager.h"
#include "psgStreamReader.h"
#include "singleFileMuxer.h"
#include "textSubtitles.h"
#include "tsMuxer.h"
#include "utf8Converter.h"
using namespace std;
BufferedReaderManager readManager(2, DEFAULT_FILE_BLOCK_SIZE, DEFAULT_FILE_BLOCK_SIZE + MAX_AV_PACKET_SIZE,
DEFAULT_FILE_BLOCK_SIZE / 2);
TSMuxerFactory tsMuxerFactory;
SingleFileMuxerFactory singleFileMuxerFactory;
static const char EXCEPTION_ERR_MSG[] =
". It does not have to be! Please contact application support team for more information.";
// const static uint32_t BLACK_PL_NUM = 1900;
// const static uint32_t BLACK_FILE_NUM = 1900;
#define LTRACE2(level, msg) \
{ \
{ \
if (level <= LT_WARN) \
cerr << msg; \
else if (level == LT_INFO) \
cout << msg; \
if (level <= LT_INFO) \
sLastMsg = true; \
} \
}
DiskType checkBluRayMux(const char* metaFileName, int& autoChapterLen, vector<double>& customChaptersList,
int& firstMplsOffset, int& firstM2tsOffset, bool& insertBlankPL, int& blankNum,
bool& stereoMode, std::string& isoDiskLabel)
{
autoChapterLen = 0;
stereoMode = false;
TextFile file(metaFileName, File::ofRead);
string str;
file.readLine(str);
DiskType result = DiskType::NONE;
while (str.length() > 0)
{
if (strStartWith(str, "MUXOPT"))
{
vector<string> params = splitQuotedStr(str.c_str(), ' ');
for (unsigned i = 0; i < params.size(); i++)
{
vector<string> paramPair = splitStr(trimStr(params[i]).c_str(), '=');
if (paramPair.size() == 0)
continue;
if (paramPair[0] == "--auto-chapters")
autoChapterLen = strToInt32(paramPair[1].c_str()) * 60;
else if (paramPair[0] == "--custom-chapters" && paramPair.size() > 1)
{
vector<string> chapList = splitStr(paramPair[1].c_str(), ';');
for (unsigned k = 0; k < chapList.size(); k++)
customChaptersList.push_back(timeToFloat(chapList[k]));
}
else if (paramPair[0] == "--mplsOffset")
{
firstMplsOffset = strToInt32(paramPair[1].c_str());
if (firstMplsOffset > 1999)
THROW(ERR_COMMON, "Too large m2ts offset " << firstMplsOffset);
}
else if (paramPair[0] == "--blankOffset")
{
blankNum = strToInt32(paramPair[1].c_str());
if (blankNum > 1999)
THROW(ERR_COMMON, "Too large black playlist offset " << blankNum);
}
else if (paramPair[0] == "--m2tsOffset")
{
firstM2tsOffset = strToInt32(paramPair[1].c_str());
if (firstM2tsOffset > 99999)
THROW(ERR_COMMON, "Too large m2ts offset " << firstM2tsOffset);
}
else if (paramPair[0] == "--insertBlankPL")
insertBlankPL = true;
else if (paramPair[0] == "--label")
{
isoDiskLabel = paramPair[1];
}
}
if (str.find("--blu-ray-v3") != string::npos)
V3_flags |= HDMV_V3;
if (str.find("--blu-ray") != string::npos)
result = DiskType::BLURAY;
else if (str.find("--avchd") != string::npos)
result = DiskType::AVCHD;
else
result = DiskType::NONE;
}
else if (strStartWith(str, "V_MPEG4/ISO/MVC"))
stereoMode = true;
file.readLine(str);
}
return result;
}
void detectStreamReader(const char* fileName, MPLSParser* mplsParser, bool isSubMode)
{
DetectStreamRez streamInfo = METADemuxer::DetectStreamReader(readManager, fileName, mplsParser == 0);
vector<CheckStreamRez>& streams = streamInfo.streams;
std::vector<MPLSStreamInfo> pgStreams3D;
if (mplsParser && mplsParser->isDependStreamExist)
pgStreams3D = mplsParser->getPgStreams();
for (unsigned i = 0; i < streams.size(); i++)
{
if (streams[i].trackID != 0)
{
if (i > 0)
LTRACE(LT_INFO, 2, "");
LTRACE(LT_INFO, 2, "Track ID: " << streams[i].trackID);
}
if (streams[i].codecInfo.codecID)
{
if (mplsParser)
{
MPLSStreamInfo mplsStreamInfo = mplsParser->getStreamByPID(streams[i].trackID);
if (mplsStreamInfo.streamPID)
{
if (mplsStreamInfo.isSecondary)
streams[i].isSecondary = true;
}
else
{
if (!(streams[i].codecInfo.codecID == CODEC_V_MPEG4_H264_DEP && mplsParser->isDependStreamExist))
streams[i].unused = true;
}
}
string postfix;
if (isSubMode && streams[i].codecInfo.codecID == CODEC_S_PGS)
postfix = " (depended view)";
LTRACE(LT_INFO, 2, "Stream type: " << streams[i].codecInfo.displayName << postfix);
if (streams[i].isSecondary)
LTRACE(LT_INFO, 2, "Secondary: 1");
if (streams[i].unused)
LTRACE(LT_INFO, 2, "Unselected: 1");
LTRACE(LT_INFO, 2, "Stream ID: " << streams[i].codecInfo.programName);
std::string descr = streams[i].streamDescr;
if (streams[i].codecInfo.codecID == CODEC_S_PGS && mplsParser && mplsParser->isDependStreamExist)
{
// PG stream
MPLSStreamInfo mplsStreamInfo = mplsParser->getStreamByPID(streams[i].trackID);
int pgTrackNum = mplsStreamInfo.streamPID - 0x1200;
if (pgTrackNum >= 0)
{
if (mplsStreamInfo.offsetId != 0xff)
{
descr += " 3d-plane: ";
descr += int32ToStr(mplsStreamInfo.offsetId);
}
else
{
descr += " 3d-plane: undefined";
}
if (mplsStreamInfo.isSSPG)
{
descr += " (stereo, right=";
descr += (mplsStreamInfo.rightEye->type == 2 ? "dep-view " : "");
descr += int32ToStr(mplsStreamInfo.rightEye->streamPID);
descr += ", left=";
descr += (mplsStreamInfo.leftEye->type == 2 ? "dep-view " : "");
descr += int32ToStr(mplsStreamInfo.leftEye->streamPID);
descr += ")";
}
}
else
descr += " (disabled)";
}
LTRACE(LT_INFO, 2, "Stream info: " << descr);
LTRACE(LT_INFO, 2, "Stream lang: " << streams[i].lang);
if (streams[i].delay)
LTRACE(LT_INFO, 2, "Stream delay: " << streams[i].delay);
if (streams[i].multiSubStream)
LTRACE(LT_INFO, 2, "subTrack: " << (streams[i].codecInfo.codecID == CODEC_V_MPEG4_H264_DEP ? 1 : 2));
}
else
LTRACE(LT_INFO, 2, "Can't detect stream type");
}
AVChapters& chapters = streamInfo.chapters;
if (chapters.size() > 0 || streamInfo.fileDurationNano > 0)
LTRACE(LT_INFO, 2, "");
if (streamInfo.fileDurationNano)
LTRACE(LT_INFO, 2, "Duration: " << floatToTime(streamInfo.fileDurationNano / 1e9));
for (size_t j = 0; j < chapters.size(); j++)
{
uint64_t time = chapters[j].start;
if (j % 5 == 0)
{
LTRACE(LT_INFO, 2, "");
LTRACE2(LT_INFO, "Marks: ");
}
LTRACE2(LT_INFO, floatToTime(time / 1e9) << " ");
}
if (chapters.size() > 0 || streamInfo.fileDurationNano > 0)
LTRACE(LT_INFO, 2, "");
}
string getBlurayStreamDir(const string& mplsName)
{
string dirName = extractFileDir(mplsName);
dirName = toNativeSeparators(dirName);
size_t tmp = dirName.substr(0, (size_t)(dirName.size() - 1)).find_last_of(getDirSeparator());
if (tmp != string::npos)
{
dirName = dirName.substr(0, tmp + 1);
if (strEndWith(dirName, string("BACKUP") + getDirSeparator()))
{
tmp = dirName.substr(0, (size_t)(dirName.size() - 1)).find_last_of(getDirSeparator());
if (tmp == string::npos)
return "";
dirName = dirName.substr(0, tmp + 1);
}
return dirName + string("STREAM") + getDirSeparator();
}
else
return "";
}
void muxBlankPL(const string& appDir, BlurayHelper& blurayHelper, const PIDListMap& pidList, DiskType dt, int blankNum)
{
int videoWidth = 1920;
int videoHeight = 1080;
double fps = 23.976;
for (auto itr = pidList.begin(); itr != pidList.end(); ++itr)
{
const PMTStreamInfo& streamInfo = itr->second;
const auto streamReader = dynamic_cast<const MPEGStreamReader*>(streamInfo.m_codecReader);
if (streamReader)
{
videoWidth = streamReader->getStreamWidth();
videoHeight = streamReader->getStreamHeight();
fps = streamReader->getFPS();
break;
}
}
uint8_t* pattern;
int patternSize;
bool isNtsc = videoWidth <= 854 && videoHeight <= 480 && (fabs(25 - fps) >= 0.5 && fabs(50 - fps) >= 0.5);
bool isPal = videoWidth <= 1024 && videoHeight <= 576 && (fabs(25 - fps) < 0.5 || fabs(50 - fps) < 0.5);
if (isNtsc)
{
pattern = pattern_ntsc;
patternSize = sizeof(pattern_ntsc);
}
else if (isPal)
{
pattern = pattern_pal;
patternSize = sizeof(pattern_pal);
}
else if (videoWidth >= 1300)
{
pattern = pattern_1920;
patternSize = sizeof(pattern_1920);
}
else
{
pattern = pattern_1280;
patternSize = sizeof(pattern_1280);
}
auto fname_time = std::chrono::duration_cast<std::chrono::microseconds>(
std::chrono::high_resolution_clock::now().time_since_epoch())
.count();
string tmpFileName = appDir + string("blank_") + std::to_string(fname_time) + string(".264");
File file;
if (!file.open(tmpFileName.c_str(), File::ofWrite))
THROW(ERR_COMMON, "can't create file " << tmpFileName);
for (int i = 0; i < 3; ++i)
{
if (file.write(pattern, patternSize) != patternSize)
{
deleteFile(tmpFileName);
THROW(ERR_COMMON, "can't write data to file " << tmpFileName);
}
}
file.close();
map<string, string> videoParams;
videoParams["insertSEI"];
videoParams["fps"] = "23.976";
{
MuxerManager muxerManager(readManager, tsMuxerFactory);
muxerManager.parseMuxOpt("MUXOPT --no-pcr-on-video-pid --vbr --avchd --vbv-len=500");
muxerManager.addStream("V_MPEG4/ISO/AVC", tmpFileName, videoParams);
string dstFile = blurayHelper.m2tsFileName(blankNum);
muxerManager.doMux(dstFile.c_str(), &blurayHelper);
auto tsMuxer = dynamic_cast<TSMuxer*>(muxerManager.getMainMuxer());
blurayHelper.createMPLSFile(tsMuxer, 0, 0, vector<double>(), dt, blankNum, false);
blurayHelper.createCLPIFile(tsMuxer, blankNum, true);
}
deleteFile(tmpFileName);
}
void doTruncatedFile(const char* fileName, int64_t offset)
{
File f;
File outFile;
f.open(fileName, File::ofRead);
std::string outName = std::string(fileName) + std::string(".back");
outFile.open(outName.c_str(), File::ofWrite);
uint32_t bufSize = 1024 * 64;
auto buffer = new uint8_t[bufSize];
f.seek(offset);
int readed = f.read(buffer, bufSize);
while (readed > 0)
{
outFile.write(buffer, readed);
readed = f.read(buffer, bufSize);
}
}
void showHelp()
{
const char help[] = R"help(
tsMuxeR is a simple program to mux video to TS/M2TS files or create BD disks.
tsMuxeR does not use external filters (codecs).
Examples:
tsMuxeR <media file name>
tsMuxeR <meta file name> <out file/dir name>
tsMuxeR can be run in track detection mode or muxing mode. If tsMuxeR is run
with only one argument, then the program displays track information required to
construct a meta file. When running with two arguments, tsMuxeR starts the
muxing or demuxing process.
Meta file format:
File MUST have the .meta extension and be encoded in UTF-8 (but see README.md).
This file defines the files you want to multiplex.
The first line of a meta file contains additional parameters that apply to all
tracks. In this case the first line should begin with the word MUXOPT.
The following lines form a list of tracks and their parameters. The format is
as follows: <code name>, <file name>, <parameters> Parameters are
separated with commas, with each parameter consisting of a name and a value,
separated with an equals sign.
Example of META file:
MUXOPT --blu-ray
V_MPEG4/ISO/AVC, D:/media/test/stream.h264, fps=25
A_AC3, D:/media/test/stream.ac3, timeshift=-10000ms
In this example one AC3 audio stream and one H264 video stream are multiplexed
into BD disc. The input file name can reference an elementary stream or a track
located inside a container.
Supported input containers:
- TS/M2TS/MTS
- EVO/VOB/MPG/MPEG
- MKV
- MOV/MP4
- MPLS (Blu-ray media play list file)
Names of codecs in the meta file:
- V_MPEGI/ISO/VVC H.266/VVC
- V_MPEGH/ISO/HEVC H.265/HEVC
- V_MPEG4/ISO/AVC H.264/AVC
- V_MPEG4/ISO/MVC H.264/MVC
- V_MS/VFW/WVC1 VC1
- V_MPEG-2 MPEG2
- A_AC3 AC3/AC3+/TRUE-HD
- A_AAC AAC
- A_DTS DTS/DTS-Express/DTS-HD
- A_MP3 MPEG audio layer 1/2/3
- A_LPCM raw pcm data or PCM WAV file
- S_HDMV/PGS Presentation graphic stream (BD subtitle format)
- S_TEXT/UTF8 SRT subtitle format. Encoding MUST be UTF-8/UTF-16/UTF-32
Each track may have additional parameters. Track parameters do not have dashes.
If a parameter's value consists of several words, it must be enclosed in quotes.
Common additional parameters for any type of track:
- track track number if input file is a container.
- lang track language. MUST contain exactly 3 letters.
Additional parameters for audio tracks:
- timeshift Shift audio track by the given number of milliseconds.
Can be negative.
- down-to-dts Available only for DTS-HD tracks. Filter out HD part.
- down-to-ac3 Available only for TRUE-HD tracks. Filter out HD part.
- secondary Mux as secondary audio. Available for DD+ and DTS-Express.
- default Mark this track as the default when muxing to Blu-ray.
Additional parameters for video tracks:
- fps The number of frames per second. If not defined, the value
is auto detected if available in the source stream. If not,
it defaults to 23.976.
- delPulldown Remove pulldown from the track, if it exists. If the
pulldown is present, the FPS value is changed from 30 to 24.
- ar Override video aspect ratio. 16:9, 4:3 e.t.c.
Additional parameters for H.264 video tracks:
- level Overwrite the level in the H264 stream. Do note that this
option only updates the headers and does not reencode the
stream, which may not meet the requirements for a lower
level.
- insertSEI If the original stream does not contain SEI picture timing,
SEI buffering period or VUI parameters, add this data to
the stream. This option is recommended for BD muxing.
- forceSEI Add SEI picture timing, buffering period and VUI parameters
to the stream and rebuild this data if it already exists.
- contSPS If the original video doesn't contain repetitive SPS/PPS,
then SPS/PPS will be added to the stream before each key
frame. This option is recommended for BD muxing.
- subTrack Used for combined AVC/MVC tracks only. TsMuxeR always
demultiplexes such tracks to separate AVC and MVC streams.
Setting this to 1 sets the reference to the AVC part, while
2 sets it to the MVC part.
- secondary Mux as secondary video (PIP).
- pipCorner Corner for PIP video. Allowed values: "TopLeft","TopRight",
"BottomRight", "BottomLeft".
- pipHOffset PIP window horizontal offset from the corner in pixels.
- pipVOffset PIP window vertical offset from the corner in pixels.
- pipScale PIP window scale factor. Allowed values: "1", "1/2", "1/4",
"1.5", "fullScreen".
- pipLumma Allow the PIP window to be transparent. Transparent colors
are lumma colors in range [0..pipLumma].
Additional parameters for PG and SRT tracks:
- video-width The width of the video in pixels.
- video-height The height of the video in pixels.
- default Mark this track as the default when muxing to Blu-ray.
Allowed values are "all" which causes all subtitles to be
shown, and "forced" which shows only elements marked as
"forced" in the subtitle stream.
- fps Video fps. It is recommended to define this parameter in
order to enable more careful timing processing.
- 3d-plane Defines the number of the '3D offset track' which is placed
inside the MVC track. Each message has an individual 3D
offset. This information is stored inside 3D offset track.
Additional parameters for SRT tracks:
- font-name Font name to render.
- font-color Font color, defined as a hexadecimal or decimal number.
24-bit long numbers (for instance 0xFF00FF) define RGB
components, while 32-bit long ones (for instance
0x80FF00FF) define ARGB components.
- font-size Font size in pixels.
- font-italic Italic display text.
- font-bold Bold display text.
- font-underline Underlined text.
- font-strikeout Strikethrough text.
- bottom-offset Distance from the lower edge while displaying text.
- font-border Outline width.
- fadein-time Time in ms for smooth subtitle appearance.
- fadeout-time Time in ms for smooth subtitle disappearance.
- line-spacing Interval between subtitle lines. Default value is 1.0.
tsMuxeR supports additional tags inside SRT tracks. The syntax and parameters
coincide with HTML: <b>, <i>, <u>, <strike>, <font>. Default relative font size
(used in these tags) is 3. For example:
<b><font size=5 color="deepskyblue" name="Arial"><u>Test</u>
<font size= 4 color="#806040">colored</font>text</font>
</b>
Global additional parameters are placed in the first line of the META file,
which must begin with the MUXOPT token.
All parameters in this group start with two dashes:
--pcr-on-video-pid Do not allocate a separate PID for PCR and use the existing
video PID.
--new-audio-pes Use bytes 0xfd instead of 0xbd for AC3, True-HD, DTS and
DTS-HD. Activated automatically for BD muxing.
--hdmv-descriptors Use HDMV descriptors instead of ITU-T H.222.0 | ISO/IEC 13818-1
descriptors. Activated automatically for BD muxing.
--vbr Use variable bitrate.
--minbitrate Sets the lower limit of the VBR bitrate. If the stream has
a smaller bitrate, NULL packets will be inserted to
compensate.
--maxbitrate The upper limit of the vbr bitrate.
--cbr Muxing mode with a fixed bitrate. --vbr and --cbr must not
be used together.
--vbv-len The length of the virtual buffer in milliseconds. The
default value is 500. Typically, this option is used
together with --cbr. The parameter is similar to the value
of vbv-buffer-size in the x264 codec, but defined in
milliseconds instead of kbit.
--no-asyncio Do not create a separate thread for writing. This option
also disables the FILE_FLAG_NO_BUFFERING flag on Windows
when writing.
This option is deprecated.
--auto-chapters Insert a chapter every <n> minutes. Used only in BD/AVCHD
mode.
--custom-chapters A semicolon delimited list of hh:mm:ss.zzz strings,
representing the chapters' start times.
--demux Run in demux mode : the selected audio and video tracks are
stored as separate files. The output name must be a folder
name. All selected effects (such as changing the level of
a H264 stream) are processed. When demuxing, certain types
of tracks are always changed :
- Subtitles in a Presentation Graphic Stream are converted
into sup format.
- PCM audio is saved as WAV files.
--blu-ray Mux as a BD disc. If the output file name is a folder, a
Blu-Ray folder structure is created inside that folder.
SSIF files for BD3D discs are not created in this case. If
the output name has an .iso extension, then the disc is
created directly as an image file.
--blu-ray-v3 As above - except mux to UHD BD discs.
--avchd Mux to AVCHD disc.
--cut-start Trim the beginning of the file. The value should be followed
by the time unit : "ms" (milliseconds), "s" (seconds) or
"min" (minutes).
--cut-end Trim the end of the file. Same rules as --cut-start apply.
--split-duration Split the output into several files, with each of them being
<n> seconds long.
--split-size Split the output into several files, with each of them
having a given maximum size. KB, KiB, MB, MiB, GB and GiB
are accepted as size units.
--right-eye Use base video stream for right eye. Used for 3DBD only.
--start-time Timestamp of the first video frame. May be defined as 45Khz
clock (just a number) or as time in hh:mm:ss.zzz format.
--mplsOffset The number of the first MPLS file. Used for BD disc mode.
--m2tsOffset The number of the first M2TS file. Used for BD disc mode.
--insertBlankPL Add an additional short playlist. Used for cropped video
muxed to BD disc.
--blankOffset Blank playlist number.
--label Disk label when muxing to ISO.
--extra-iso-space Allocate extra space in 64K units for ISO metadata (file
and directory names). Normally, tsMuxeR allocates this space
automatically, but if split condition generates a lot
of small files, it may be required to define extra space.
--constant-iso-hdr Generates an ISO header that does not depend on the program
version or the current time. Not meant for normal usage.
)help";
LTRACE(LT_INFO, 2, help);
}
#ifdef _WIN32
#include <shellapi.h>
#endif
int main(int argc, char** argv)
{
#ifdef _WIN32
auto argvWide = CommandLineToArgvW(GetCommandLineW(), &argc);
std::vector<std::string> argv_utf8;
argv_utf8.reserve(static_cast<std::size_t>(argc));
for (int i = 0; i < argc; ++i)
{
argv_utf8.emplace_back(toUtf8(argvWide[i]));
}
LocalFree(argvWide);
std::vector<char*> argv_vec;
argv_vec.reserve(argv_utf8.size());
for (auto&& s : argv_utf8)
{
argv_vec.push_back(&s[0]);
}
argv = &argv_vec[0];
#endif
LTRACE(LT_INFO, 2, "tsMuxeR version " TSMUXER_VERSION << ". github.com/justdan96/tsMuxer");
int firstMplsOffset = 0;
int firstM2tsOffset = 0;
int blankNum = 1900;
bool insertBlankPL = false;
// createBluRayDirs("c:/workshop/");
// MPLSParser parser;
// parser.parse("d:/hdtv/SHERLOCK_HOLMES/BDMV/PLAYLIST/00100.mpls");
// CLPIParser parser;
// parser.parse("h:/BDMV/CLIPINF/00000.clpi");
// parser.parse("d:/workshop/test_orig_disk2/BDMV/CLIPINF/00003.clpi");
// uint8_t moBuffer[1024];
// MovieObject mo;
// mo.parse("h:/BDMV/MovieObject.bdmv");
// int moLen = mo.compose(moBuffer, sizeof(moBuffer));
// file.write(moBuffer, moLen);
try
{
if (argc == 2)
{
string str = argv[1];
string fileExt = extractFileExt(str);
fileExt = strToLowerCase(fileExt);
if (fileExt == "mpls" || fileExt == "mpl")
{
bool shortExt = fileExt == "mpl";
MPLSParser mplsParser;
mplsParser.parse(argv[1]);
string streamDir = getBlurayStreamDir(argv[1]);
std::string mediaExt = shortExt ? ".MTS" : ".m2ts";
std::string ssifExt = shortExt ? ".SIF" : ".ssif";
bool mode3D = mplsParser.isDependStreamExist;
bool switchToSsif = false;
if (mplsParser.m_playItems.size() > 0)
{
MPLSPlayItem& item = mplsParser.m_playItems[0];
string itemName = streamDir + item.fileName + mediaExt;
if (fileExists(itemName))
{
if (mode3D && !mplsParser.m_mvcFiles.empty())
{
string subItemName = streamDir + mplsParser.m_mvcFiles[0] + mediaExt;
if (fileExists(subItemName))
detectStreamReader(subItemName.c_str(), &mplsParser, true);
else
switchToSsif = true;
}
}
else
{
switchToSsif = true;
}
if (switchToSsif)
{
string ssifName = streamDir + string("SSIF") + getDirSeparator() + item.fileName + ssifExt;
if (fileExists(ssifName))
itemName = ssifName; // if m2ts file absent then swith to ssif
}
detectStreamReader(itemName.c_str(), &mplsParser, false);
}
size_t markIndex = 0;
int64_t prevFileOffset = 0;
for (size_t i = 0; i < mplsParser.m_playItems.size(); i++)
{
MPLSPlayItem& item = mplsParser.m_playItems[i];
string itemName;
if (mode3D)
itemName = streamDir + string("SSIF") + getDirSeparator() + item.fileName + ".ssif";
else
itemName = streamDir + item.fileName + mediaExt; // 2d mode
LTRACE(LT_INFO, 2, "");
LTRACE(LT_INFO, 2, "File #" << strPadLeft(int64ToStr(i), 5, '0') << " name=" << itemName);
LTRACE(LT_INFO, 2,
"Duration: " << floatToTime(
(mplsParser.m_playItems[i].OUT_time - mplsParser.m_playItems[i].IN_time) /
(double)45000.0));
if (mplsParser.isDependStreamExist)
{
if (mplsParser.mvc_base_view_r)
{
LTRACE(LT_INFO, 2, "Base view: right-eye");
}
else
{
LTRACE(LT_INFO, 2, "Base view: left-eye");
}
}
if (!mplsParser.m_playItems.empty())
LTRACE(LT_INFO, 2, "start-time: " << mplsParser.m_playItems[0].IN_time);
int marksPerFile = 0;
for (; markIndex < mplsParser.m_marks.size(); markIndex++)
{
PlayListMark& curMark = mplsParser.m_marks[markIndex];
if (curMark.m_playItemID > i)
break;
uint64_t time = curMark.m_markTime - mplsParser.m_playItems[i].IN_time + prevFileOffset;
if (marksPerFile % 5 == 0)
{
if (marksPerFile > 0)
LTRACE(LT_INFO, 2, "");
LTRACE2(LT_INFO, "Marks: ");
}
marksPerFile++;
LTRACE2(LT_INFO, floatToTime(time / 45000.0) << " ");
}
if (marksPerFile > 0)
LTRACE(LT_INFO, 2, "");
prevFileOffset += mplsParser.m_playItems[i].OUT_time - mplsParser.m_playItems[i].IN_time;
}
}
else
detectStreamReader(argv[1], 0, false);
cout << endl;
return 0;
}
if (argc != 3)
{
/*
LTRACE(LT_INFO, 2, "Usage: ");
LTRACE(LT_INFO, 2, "For start muxing: " << "tsMuxeR <meta file name> <out file/dir name>");
LTRACE(LT_INFO, 2, "For detect stream params: " << "tsMuxeR <media file name>");
LTRACE(LT_INFO, 2, "For more information about meta file see readme.txt");
cout << endl;
*/
showHelp();
return -1;
}
string fileExt = extractFileExt(argv[2]);
fileExt = strToUpperCase(fileExt);
auto startTime = std::chrono::steady_clock::now();
int autoChapterLen = 0;
vector<double> customChapterList;
bool stereoMode = false;
string isoDiskLabel;
DiskType dt = checkBluRayMux(argv[1], autoChapterLen, customChapterList, firstMplsOffset, firstM2tsOffset,
insertBlankPL, blankNum, stereoMode, isoDiskLabel);
std::string fileExt2 = unquoteStr(fileExt);
bool muxMode =
fileExt2 == "M2TS" || fileExt2 == "TS" || fileExt2 == "SSIF" || fileExt2 == "ISO" || dt != DiskType::NONE;
if (muxMode)
{
BlurayHelper blurayHelper;
MuxerManager muxerManager(readManager, tsMuxerFactory);
muxerManager.setAllowStereoMux(fileExt2 == "SSIF" || dt != DiskType::NONE);
muxerManager.openMetaFile(argv[1]);
if (!isV3() && dt == DiskType::BLURAY && muxerManager.getHevcFound())
{
LTRACE(LT_INFO, 2, "HEVC stream detected: changing Blu-Ray version to V3.");
V3_flags |= HDMV_V3;
}
// output path - is checked for invalid characters on our platform
string dstFile = unquoteStr(argv[2]);
if (!isValidFileName(dstFile))
throw runtime_error(string("Output filename is invalid: ") + dstFile);
if (dt != DiskType::NONE)
{
if (!blurayHelper.open(dstFile, dt, muxerManager.totalSize(), muxerManager.getExtraISOBlocks(),
muxerManager.useReproducibleIsoHeader()))
throw runtime_error(string("Can't create output file ") + dstFile);
blurayHelper.setVolumeLabel(isoDiskLabel);
blurayHelper.createBluRayDirs();
dstFile = blurayHelper.m2tsFileName(firstM2tsOffset);
}
if (muxerManager.getTrackCnt() == 0)
THROW(ERR_COMMON, "No tracks selected");
muxerManager.doMux(dstFile, dt != DiskType::NONE ? &blurayHelper : 0);
if (dt != DiskType::NONE)
{
blurayHelper.writeBluRayFiles(muxerManager, insertBlankPL, firstMplsOffset, blankNum, stereoMode);
auto mainMuxer = dynamic_cast<TSMuxer*>(muxerManager.getMainMuxer());
auto subMuxer = dynamic_cast<TSMuxer*>(muxerManager.getSubMuxer());
if (mainMuxer)
blurayHelper.createCLPIFile(mainMuxer, mainMuxer->getFirstFileNum(), true);
if (subMuxer)
{
blurayHelper.createCLPIFile(subMuxer, subMuxer->getFirstFileNum(), false);
IsoWriter* IsoWriter = blurayHelper.isoWriter();
if (IsoWriter)
{
for (size_t i = 0; i < mainMuxer->splitFileCnt(); ++i)
{
string file1 = mainMuxer->getFileNameByIdx(i);
string file2 = subMuxer->getFileNameByIdx(i);
int ssifNum = strToInt32(extractFileName(file1));
if (!file1.empty() && !file2.empty())
IsoWriter->createInterleavedFile(file1, file2, blurayHelper.ssifFileName(ssifNum));
}
}
}
for (auto& i : customChapterList) i -= (double)muxerManager.getCutStart() / 1e9;
// createMPLSFile(dstDir, mainMuxer->getPidList(), *(mainMuxer->getFirstPts().begin()),
// *(mainMuxer->getLastPts().rbegin()),
// autoChapterLen, customChapterList, dt, firstMplsOffset, firstM2tsOffset);
// allign last PTS between main and sub muxers
if (subMuxer)
mainMuxer->alignPTS(subMuxer);
blurayHelper.createMPLSFile(mainMuxer, subMuxer, autoChapterLen, customChapterList, dt, firstMplsOffset,
muxerManager.isMvcBaseViewR());
if (insertBlankPL && mainMuxer && !subMuxer)
{
LTRACE(LT_INFO, 2, "Adding blank play list");
muxBlankPL(extractFileDir(argv[0]), blurayHelper, mainMuxer->getPidList(), dt, blankNum);
}
}
LTRACE(LT_INFO, 2, "Mux successful complete");
}
else
{
MuxerManager sMuxer(readManager, singleFileMuxerFactory);
sMuxer.openMetaFile(argv[1]);
if (sMuxer.getTrackCnt() == 0)
THROW(ERR_COMMON, "No tracks selected");
// output path - is checked for invalid characters on our platform
string dstFile = unquoteStr(argv[2]);
if (!isValidFileName(dstFile))
throw runtime_error(string("Output filename is invalid: ") + dstFile);
createDir(dstFile, true);
sMuxer.doMux(dstFile, 0);
LTRACE(LT_INFO, 2, "Demux complete.");
}
auto endTime = std::chrono::steady_clock::now();
auto totalTime = endTime - startTime;
auto seconds = std::chrono::duration_cast<std::chrono::seconds>(totalTime);
auto minutes = std::chrono::duration_cast<std::chrono::minutes>(totalTime);
if (muxMode)
{
LTRACE2(LT_INFO, "Muxing time: ");
}
else
LTRACE2(LT_INFO, "Demuxing time: ");
if (minutes.count() > 0)
{
LTRACE2(LT_INFO, minutes.count() << " min ");
seconds -= minutes;
}
LTRACE(LT_INFO, 2, seconds.count() << " sec");
return 0;
}
catch (runtime_error& e)
{
if (argc == 2)
LTRACE2(LT_ERROR, "Error: ");
LTRACE2(LT_ERROR, e.what());
return -1;
}
catch (VodCoreException& e)
{
if (argc == 2)
LTRACE2(LT_ERROR, "Error: ");
LTRACE(LT_ERROR, 2, e.m_errStr.c_str());
return -2;
}
catch (BitStreamException& e)
{
if (argc == 2)
LTRACE2(LT_ERROR, "Error: ");
LTRACE(LT_ERROR, 2, "Bitstream exception " << e.what() << EXCEPTION_ERR_MSG);
return -3;
}
catch (...)
{
if (argc == 2)
LTRACE2(LT_ERROR, "Error: ");
LTRACE(LT_ERROR, 2, "Unknnown exception" << EXCEPTION_ERR_MSG);
return -4;
}
}