Afrostream / afrostream-back-end

Simple backo for afrostream
1 stars 0 forks source link

Import: LEGEEEP #325

Closed syndr0m closed 8 years ago

syndr0m commented 8 years ago
// to import new contents from PF, duplicate this script & increment manualImportId
var manualImportId = "02";
var name="LEGEEEP";

// import script
var liste = JSON.parse(document.querySelector('pre').innerHTML).filter(function (o) {
  return o.filename.indexOf(name) !== -1;
});
liste.sort(function(a, b) {
   if (a.filename === b.filename) return 0;
   return (a.filename < b.filename) ? -1 : 1;
});
function pad(n, width, z) {
  z = z || '0';
  n = n + '';
  return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
}
liste.map(function (o,i) { 
  var d = o.duration.split(':'); 
  var duration = parseInt(d[2], 10) + parseInt(d[1], 10)*60 + parseInt(d[0], 0) * 3600; 
  var name = o.filename.split('/').pop().replace('.mp4', '').replace('.mxf', '');
  var encodingId = o.uuid;
  var pfMd5Hash = o.md5Hash;
  var id = "01234567-89ab-cdef-"+manualImportId+"00-000000000"+pad(i, 3);
  var assetId1 = "01234567-89ab-cdef-"+manualImportId+"01-000000000"+pad(i, 3);
  var assetId2 = "01234567-89ab-cdef-"+manualImportId+"02-000000000"+pad(i, 3);
  var assetId3 = "01234567-89ab-cdef-"+manualImportId+"03-000000000"+pad(i, 3);

  return 'INSERT INTO "Videos" ' +
         '("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")' +
         'VALUES ' +
         "('"+id+"','"+name+"', true, null, '"+encodingId+"', false, '"+duration+"', '"+pfMd5Hash+"');"+
         'INSERT INTO "Assets" (_id, src, type, "videoId") ' + "VALUES ('"+assetId1+"', '"+ 'https://hw.cdn.afrostream.net/vod/'+name+'/'+encodingId+'.ism/master.m3u8' + "', 'application/vnd.apple.mpegurl', '"+id+"');"+
         'INSERT INTO "Assets" (_id, src, type, "videoId") ' + "VALUES ('"+assetId2+"', '"+ 'https://hw.cdn.afrostream.net/vod/'+name+'/'+encodingId+'.ism/'+encodingId+'.mpd' + "', 'application/dash+xml', '"+id+"');"+
         'INSERT INTO "Assets" (_id, src, type, "videoId") ' + "VALUES ('"+assetId3+"', '"+ 'http://hw.cdn.afrostream.net/vod/'+name+'/'+encodingId+'.ism/MANIFEST' + "', 'application/vnd.ms-sstr+xml', '"+id+"');";
}).join("\n") 
syndr0m commented 8 years ago
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000000','LEGEEEP_S01EP01', true, null, '5b9f9523-f9d5-4656-bf19-f14e72e397be', false, '1416', 'eeef58547e333906461e1d42b653e844');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000000', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP01/5b9f9523-f9d5-4656-bf19-f14e72e397be.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000000');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000000', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP01/5b9f9523-f9d5-4656-bf19-f14e72e397be.ism/5b9f9523-f9d5-4656-bf19-f14e72e397be.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000000');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000000', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP01/5b9f9523-f9d5-4656-bf19-f14e72e397be.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000000');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000001','LEGEEEP_S01EP02', true, null, '4bdc1363-ecb5-4c4e-962e-5f41c8bb0b82', false, '1478', 'c313ca6ed0e48f726c405f0c23d0c633');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000001', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP02/4bdc1363-ecb5-4c4e-962e-5f41c8bb0b82.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000001');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000001', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP02/4bdc1363-ecb5-4c4e-962e-5f41c8bb0b82.ism/4bdc1363-ecb5-4c4e-962e-5f41c8bb0b82.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000001');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000001', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP02/4bdc1363-ecb5-4c4e-962e-5f41c8bb0b82.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000001');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000002','LEGEEEP_S01EP03', true, null, '75764b31-7719-4f0d-84fc-ad40b6b68a4d', false, '1481', '0d486cdff1c68c99a2342fba644fcf04');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000002', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP03/75764b31-7719-4f0d-84fc-ad40b6b68a4d.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000002');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000002', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP03/75764b31-7719-4f0d-84fc-ad40b6b68a4d.ism/75764b31-7719-4f0d-84fc-ad40b6b68a4d.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000002');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000002', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP03/75764b31-7719-4f0d-84fc-ad40b6b68a4d.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000002');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000003','LEGEEEP_S01EP04', true, null, 'f9eb5a44-c8bb-492a-8192-b87e4d3de859', false, '1482', '35c51895f68b4489a67ad5d66714fc21');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000003', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP04/f9eb5a44-c8bb-492a-8192-b87e4d3de859.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000003');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000003', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP04/f9eb5a44-c8bb-492a-8192-b87e4d3de859.ism/f9eb5a44-c8bb-492a-8192-b87e4d3de859.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000003');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000003', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP04/f9eb5a44-c8bb-492a-8192-b87e4d3de859.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000003');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000004','LEGEEEP_S01EP05', true, null, '3c4f31e0-f883-458e-b6b9-534ed60961c5', false, '1477', '718135e6a77ca485a8ead498df25e60a');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000004', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP05/3c4f31e0-f883-458e-b6b9-534ed60961c5.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000004');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000004', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP05/3c4f31e0-f883-458e-b6b9-534ed60961c5.ism/3c4f31e0-f883-458e-b6b9-534ed60961c5.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000004');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000004', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP05/3c4f31e0-f883-458e-b6b9-534ed60961c5.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000004');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000005','LEGEEEP_S01EP06', true, null, 'ec7d777f-c4a4-4bbb-8c8d-8256002fbb5b', false, '1499', 'a5665b786ab6ff3f60d08f60a2cf27b7');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000005', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP06/ec7d777f-c4a4-4bbb-8c8d-8256002fbb5b.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000005');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000005', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP06/ec7d777f-c4a4-4bbb-8c8d-8256002fbb5b.ism/ec7d777f-c4a4-4bbb-8c8d-8256002fbb5b.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000005');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000005', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP06/ec7d777f-c4a4-4bbb-8c8d-8256002fbb5b.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000005');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000006','LEGEEEP_S01EP07', true, null, 'a6ef915d-a151-4c78-b803-5068b632f581', false, '1462', 'de62665cbc3360ba7c858d5b4ba097f5');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000006', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP07/a6ef915d-a151-4c78-b803-5068b632f581.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000006');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000006', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP07/a6ef915d-a151-4c78-b803-5068b632f581.ism/a6ef915d-a151-4c78-b803-5068b632f581.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000006');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000006', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP07/a6ef915d-a151-4c78-b803-5068b632f581.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000006');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000007','LEGEEEP_S01EP08', true, null, '74ad3a69-d912-4bb5-9b6c-32e683bb6e78', false, '1504', '06d6c15e9e1289e4ffeb0d67c48f5a70');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000007', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP08/74ad3a69-d912-4bb5-9b6c-32e683bb6e78.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000007');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000007', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP08/74ad3a69-d912-4bb5-9b6c-32e683bb6e78.ism/74ad3a69-d912-4bb5-9b6c-32e683bb6e78.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000007');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000007', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP08/74ad3a69-d912-4bb5-9b6c-32e683bb6e78.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000007');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000008','LEGEEEP_S01EP09', true, null, '420856d4-8667-4a74-abab-f48977e0f86f', false, '1490', '16a840de77ccdd76818d84564c8c3a33');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000008', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP09/420856d4-8667-4a74-abab-f48977e0f86f.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000008');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000008', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP09/420856d4-8667-4a74-abab-f48977e0f86f.ism/420856d4-8667-4a74-abab-f48977e0f86f.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000008');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000008', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP09/420856d4-8667-4a74-abab-f48977e0f86f.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000008');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000009','LEGEEEP_S01EP10', true, null, 'a3fc15c0-a26c-4f34-b807-39f7c62b50da', false, '1497', '8a7ec6f12c58a8650f233047e19e04e1');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000009', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP10/a3fc15c0-a26c-4f34-b807-39f7c62b50da.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000009');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000009', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP10/a3fc15c0-a26c-4f34-b807-39f7c62b50da.ism/a3fc15c0-a26c-4f34-b807-39f7c62b50da.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000009');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000009', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP10/a3fc15c0-a26c-4f34-b807-39f7c62b50da.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000009');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000010','LEGEEEP_S01EP11', true, null, 'bc2474fd-64c0-45cc-b954-d036ec111d02', false, '1494', '5a21a190eb7fc42d90671430996b1ac7');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000010', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP11/bc2474fd-64c0-45cc-b954-d036ec111d02.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000010');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000010', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP11/bc2474fd-64c0-45cc-b954-d036ec111d02.ism/bc2474fd-64c0-45cc-b954-d036ec111d02.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000010');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000010', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP11/bc2474fd-64c0-45cc-b954-d036ec111d02.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000010');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000011','LEGEEEP_S01EP12', true, null, '9ef219c1-fbba-40eb-b4f3-cf26b0496bb7', false, '1482', '3020366860b0fe62a7a0b644ab2b3153');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000011', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP12/9ef219c1-fbba-40eb-b4f3-cf26b0496bb7.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000011');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000011', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP12/9ef219c1-fbba-40eb-b4f3-cf26b0496bb7.ism/9ef219c1-fbba-40eb-b4f3-cf26b0496bb7.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000011');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000011', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP12/9ef219c1-fbba-40eb-b4f3-cf26b0496bb7.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000011');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000012','LEGEEEP_S01EP13', true, null, 'd475b57f-6d6d-4424-86f0-6d5acc690744', false, '1495', 'f5702fee3dd709d4587bca5bd24024f6');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000012', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP13/d475b57f-6d6d-4424-86f0-6d5acc690744.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000012');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000012', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP13/d475b57f-6d6d-4424-86f0-6d5acc690744.ism/d475b57f-6d6d-4424-86f0-6d5acc690744.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000012');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000012', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP13/d475b57f-6d6d-4424-86f0-6d5acc690744.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000012');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000013','LEGEEEP_S01EP14', true, null, '4719f933-28f8-481f-8980-92e1f2b04d26', false, '1489', 'abdeaa8d0f270f3e0a07c2c2efd77d99');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000013', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP14/4719f933-28f8-481f-8980-92e1f2b04d26.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000013');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000013', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP14/4719f933-28f8-481f-8980-92e1f2b04d26.ism/4719f933-28f8-481f-8980-92e1f2b04d26.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000013');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000013', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP14/4719f933-28f8-481f-8980-92e1f2b04d26.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000013');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000014','LEGEEEP_S01EP15', true, null, 'f246df39-0d78-431c-9436-426eaf8d796f', false, '1518', '809d81af56a8720bf17f7861176ac613');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000014', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP15/f246df39-0d78-431c-9436-426eaf8d796f.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000014');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000014', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP15/f246df39-0d78-431c-9436-426eaf8d796f.ism/f246df39-0d78-431c-9436-426eaf8d796f.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000014');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000014', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP15/f246df39-0d78-431c-9436-426eaf8d796f.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000014');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000015','LEGEEEP_S01EP16', true, null, '318f5159-898b-408c-aaaa-1631b4b23ee1', false, '1486', '86c4f41b92bf1f6b12cff0f4361729de');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000015', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP16/318f5159-898b-408c-aaaa-1631b4b23ee1.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000015');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000015', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP16/318f5159-898b-408c-aaaa-1631b4b23ee1.ism/318f5159-898b-408c-aaaa-1631b4b23ee1.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000015');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000015', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP16/318f5159-898b-408c-aaaa-1631b4b23ee1.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000015');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000016','LEGEEEP_S01EP17', true, null, '9379b0d2-97c6-477f-b7b2-eab664c06cb9', false, '1497', '8e93f96417da51202770a2962bd89c65');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000016', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP17/9379b0d2-97c6-477f-b7b2-eab664c06cb9.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000016');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000016', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP17/9379b0d2-97c6-477f-b7b2-eab664c06cb9.ism/9379b0d2-97c6-477f-b7b2-eab664c06cb9.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000016');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000016', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP17/9379b0d2-97c6-477f-b7b2-eab664c06cb9.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000016');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000017','LEGEEEP_S01EP18', true, null, 'c19f7c61-b8b3-4db7-aa60-3dfdb53bbb49', false, '1496', '29e0ce8ee988b06c90caaad47b683517');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000017', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP18/c19f7c61-b8b3-4db7-aa60-3dfdb53bbb49.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000017');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000017', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP18/c19f7c61-b8b3-4db7-aa60-3dfdb53bbb49.ism/c19f7c61-b8b3-4db7-aa60-3dfdb53bbb49.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000017');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000017', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP18/c19f7c61-b8b3-4db7-aa60-3dfdb53bbb49.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000017');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000018','LEGEEEP_S01EP19', true, null, '1910a24e-664d-49b0-8a2a-a075f088b79c', false, '1498', '54fafb0b0bddd6bc87b84eaedb4b8711');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000018', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP19/1910a24e-664d-49b0-8a2a-a075f088b79c.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000018');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000018', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP19/1910a24e-664d-49b0-8a2a-a075f088b79c.ism/1910a24e-664d-49b0-8a2a-a075f088b79c.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000018');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000018', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP19/1910a24e-664d-49b0-8a2a-a075f088b79c.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000018');
INSERT INTO "Videos" ("_id", "name", "active", "importId", "encodingId", "drm", "duration", "pfMd5Hash")VALUES ('01234567-89ab-cdef-0200-000000000019','LEGEEEP_S01EP20', true, null, '9cb03f9a-4980-463d-af4e-4ce64ccff189', false, '1489', 'a578cfacb1ee95b77310dcc95ecda056');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0201-000000000019', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP20/9cb03f9a-4980-463d-af4e-4ce64ccff189.ism/master.m3u8', 'application/vnd.apple.mpegurl', '01234567-89ab-cdef-0200-000000000019');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0202-000000000019', 'https://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP20/9cb03f9a-4980-463d-af4e-4ce64ccff189.ism/9cb03f9a-4980-463d-af4e-4ce64ccff189.mpd', 'application/dash+xml', '01234567-89ab-cdef-0200-000000000019');INSERT INTO "Assets" (_id, src, type, "videoId") VALUES ('01234567-89ab-cdef-0203-000000000019', 'http://hw.cdn.afrostream.net/vod/LEGEEEP_S01EP20/9cb03f9a-4980-463d-af4e-4ce64ccff189.ism/MANIFEST', 'application/vnd.ms-sstr+xml', '01234567-89ab-cdef-0200-000000000019');
syndr0m commented 8 years ago

done