You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DMM has its own naming convention for video files purchased and downloaded from their website. For example, instead of IPX-043, it could be ipx00043hhb or ipx00043mhb based on your bitrate selection.
Here is a list for filenames based on different bitrate:
300K: ipx00043sm
1000K: ipx00043dm
2000K: ipx00043mmb
3000K: ipx00043mhb
4000K: ipx00043hmb
6000K: ipx00043hhb
Also there are other video files which have prefix, for example h_286stm00030mhb, 1havd00779mhb, 60xv00675mhb and 53dv00959mhb. So I would suggest using regex to process them.
In DmmParsingProfile.createSearchString() function, you can add below code fragment before URLCodec codec = new URLCodec();
In Movie.scrapeMovie() function, when you construct string idFromMovieFileToMatch, you might need to replace the postfix I mentioned above, like sm, dm, mmb, mhb, hmb and hhb.
The text was updated successfully, but these errors were encountered:
DMM has its own naming convention for video files purchased and downloaded from their website. For example, instead of IPX-043, it could be ipx00043hhb or ipx00043mhb based on your bitrate selection.
Here is a list for filenames based on different bitrate:
300K: ipx00043sm
1000K: ipx00043dm
2000K: ipx00043mmb
3000K: ipx00043mhb
4000K: ipx00043hmb
6000K: ipx00043hhb
Also there are other video files which have prefix, for example h_286stm00030mhb, 1havd00779mhb, 60xv00675mhb and 53dv00959mhb. So I would suggest using regex to process them.
In DmmParsingProfile.createSearchString() function, you can add below code fragment before URLCodec codec = new URLCodec();
In Movie.scrapeMovie() function, when you construct string idFromMovieFileToMatch, you might need to replace the postfix I mentioned above, like sm, dm, mmb, mhb, hmb and hhb.
The text was updated successfully, but these errors were encountered: