ismindex: Allow adding a path prefix to the generated .ism file
This allows storing the .ismv/.isma/.ismc files separately from the .ism file on a server, without having to manually edit the .ism file after generating it with the ismindex tool. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
cdab9db2ad
commit
6bc4934b75
@ -25,6 +25,10 @@
|
|||||||
* This step creates foo.ism and foo.ismc that is required by IIS for
|
* This step creates foo.ism and foo.ismc that is required by IIS for
|
||||||
* serving it.
|
* serving it.
|
||||||
*
|
*
|
||||||
|
* By adding -path-prefix path/, the produced foo.ism will refer to the
|
||||||
|
* files foo.ismv as "path/foo.ismv" - the prefix for the generated ismc
|
||||||
|
* file can be set with the -ismc-prefix option similarly.
|
||||||
|
*
|
||||||
* To pre-split files for serving as static files by a web server without
|
* To pre-split files for serving as static files by a web server without
|
||||||
* any extra server support, create the ismv file as above, and split it:
|
* any extra server support, create the ismv file as above, and split it:
|
||||||
* ismindex -split foo.ismv
|
* ismindex -split foo.ismv
|
||||||
@ -42,7 +46,8 @@
|
|||||||
|
|
||||||
static int usage(const char *argv0, int ret)
|
static int usage(const char *argv0, int ret)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "%s [-split] [-n basename] file1 [file2] ...\n", argv0);
|
fprintf(stderr, "%s [-split] [-n basename] [-path-prefix prefix] "
|
||||||
|
"[-ismc-prefix prefix] file1 [file2] ...\n", argv0);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -378,7 +383,8 @@ fail:
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void output_server_manifest(struct Tracks *tracks,
|
static void output_server_manifest(struct Tracks *tracks,
|
||||||
const char *basename)
|
const char *basename, const char *path_prefix,
|
||||||
|
const char *ismc_prefix)
|
||||||
{
|
{
|
||||||
char filename[1000];
|
char filename[1000];
|
||||||
FILE *out;
|
FILE *out;
|
||||||
@ -394,15 +400,15 @@ static void output_server_manifest(struct Tracks *tracks,
|
|||||||
fprintf(out, "<smil xmlns=\"http://www.w3.org/2001/SMIL20/Language\">\n");
|
fprintf(out, "<smil xmlns=\"http://www.w3.org/2001/SMIL20/Language\">\n");
|
||||||
fprintf(out, "\t<head>\n");
|
fprintf(out, "\t<head>\n");
|
||||||
fprintf(out, "\t\t<meta name=\"clientManifestRelativePath\" "
|
fprintf(out, "\t\t<meta name=\"clientManifestRelativePath\" "
|
||||||
"content=\"%s.ismc\" />\n", basename);
|
"content=\"%s%s.ismc\" />\n", ismc_prefix, basename);
|
||||||
fprintf(out, "\t</head>\n");
|
fprintf(out, "\t</head>\n");
|
||||||
fprintf(out, "\t<body>\n");
|
fprintf(out, "\t<body>\n");
|
||||||
fprintf(out, "\t\t<switch>\n");
|
fprintf(out, "\t\t<switch>\n");
|
||||||
for (i = 0; i < tracks->nb_tracks; i++) {
|
for (i = 0; i < tracks->nb_tracks; i++) {
|
||||||
struct Track *track = tracks->tracks[i];
|
struct Track *track = tracks->tracks[i];
|
||||||
const char *type = track->is_video ? "video" : "audio";
|
const char *type = track->is_video ? "video" : "audio";
|
||||||
fprintf(out, "\t\t\t<%s src=\"%s\" systemBitrate=\"%d\">\n",
|
fprintf(out, "\t\t\t<%s src=\"%s%s\" systemBitrate=\"%d\">\n",
|
||||||
type, track->name, track->bitrate);
|
type, path_prefix, track->name, track->bitrate);
|
||||||
fprintf(out, "\t\t\t\t<param name=\"trackID\" value=\"%d\" "
|
fprintf(out, "\t\t\t\t<param name=\"trackID\" value=\"%d\" "
|
||||||
"valueType=\"data\" />\n", track->track_id);
|
"valueType=\"data\" />\n", track->track_id);
|
||||||
fprintf(out, "\t\t\t</%s>\n", type);
|
fprintf(out, "\t\t\t</%s>\n", type);
|
||||||
@ -528,6 +534,7 @@ static void clean_tracks(struct Tracks *tracks)
|
|||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
const char *basename = NULL;
|
const char *basename = NULL;
|
||||||
|
const char *path_prefix = "", *ismc_prefix = "";
|
||||||
int split = 0, i;
|
int split = 0, i;
|
||||||
struct Tracks tracks = { 0, .video_track = -1, .audio_track = -1 };
|
struct Tracks tracks = { 0, .video_track = -1, .audio_track = -1 };
|
||||||
|
|
||||||
@ -537,6 +544,12 @@ int main(int argc, char **argv)
|
|||||||
if (!strcmp(argv[i], "-n")) {
|
if (!strcmp(argv[i], "-n")) {
|
||||||
basename = argv[i + 1];
|
basename = argv[i + 1];
|
||||||
i++;
|
i++;
|
||||||
|
} else if (!strcmp(argv[i], "-path-prefix")) {
|
||||||
|
path_prefix = argv[i + 1];
|
||||||
|
i++;
|
||||||
|
} else if (!strcmp(argv[i], "-ismc-prefix")) {
|
||||||
|
ismc_prefix = argv[i + 1];
|
||||||
|
i++;
|
||||||
} else if (!strcmp(argv[i], "-split")) {
|
} else if (!strcmp(argv[i], "-split")) {
|
||||||
split = 1;
|
split = 1;
|
||||||
} else if (argv[i][0] == '-') {
|
} else if (argv[i][0] == '-') {
|
||||||
@ -550,7 +563,7 @@ int main(int argc, char **argv)
|
|||||||
return usage(argv[0], 1);
|
return usage(argv[0], 1);
|
||||||
|
|
||||||
if (!split)
|
if (!split)
|
||||||
output_server_manifest(&tracks, basename);
|
output_server_manifest(&tracks, basename, path_prefix, ismc_prefix);
|
||||||
output_client_manifest(&tracks, basename, split);
|
output_client_manifest(&tracks, basename, split);
|
||||||
|
|
||||||
clean_tracks(&tracks);
|
clean_tracks(&tracks);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user