Video Source Editing - Updated List? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +---- Forum: Ember Media Manager (https://forum.kodi.tv/forumdisplay.php?fid=195) +---- Thread: Video Source Editing - Updated List? (/showthread.php?tid=359840) |
Video Source Editing - Updated List? - thrashmagazine - 2021-01-15 Is there a definitive, up to date list for Video Source Editing? I noticed its missing remux and I am sure a few more. When I try manually adding remux as a search string to map to bluray it doesn't recognize it (I am probably doing something wrong). Figured I would see if someone has an up to date list to be used. RE: Video Source Editing - Updated List? - DanCooper - 2021-01-15 Video Source Mapping has to be a regex expression. This should work: Code: (?i)[\W_]remux[\W_] [\W_] = any non-word character or underscore "Remux" does not necessarily mean that it is a remux from a Bluray. In theory, you can also remux a DVD. "Remux" just means that the video track and one or more audio and subtitle tracks have been packed into a container without re-encoding. For this reason I cannot include this in the standard list either. RE: Video Source Editing - Updated List? - thrashmagazine - 2021-01-15 (2021-01-15, 15:55)DanCooper Wrote: Video Source Mapping has to be a regex expression. This should work:ya, thats not working for me for whatever reason (sorrry I was lazy and didn't type in the regex stuff: (?i)[\W_]remux[\W_]. That said, you bring up a good point, I should probably rename my remux files to remux.bluray anyways... RE: Video Source Editing - Updated List? - DanCooper - 2021-01-15 It has to work. Did you reload the video in Ember (F5)? The video source is usually only determined when it is added to the database. Best way to test regex is https://regex101.com RE: Video Source Editing - Updated List? - thrashmagazine - 2021-01-15 (2021-01-15, 16:14)DanCooper Wrote: It has to work. Did you reload the video in Ember (F5)? The video source is usually only determined when it is added to the database. thanks, reload worked. I thought I just needed to rescan meta data/nfo. RE: Video Source Editing - Updated List? - DanCooper - 2021-01-15 This mapping is based on file or folder name, not meta data. |