Hello! I am JRMOS.

你好!我是 加刘景长

Hello

Welcome to my home!

欢迎来到我的HOME!

 

The site is of their own design

网站是自己设计

Tweets

Welcome your arrival

欢迎你的到来

Contacts

中文字幕组历程史记 2023.04.24 DBD组长回应“某科学一方通行”的BDMV盗用片源问题

*本文发布只做记录转发,「译者史记」系列文是记录中文字幕组历程史记,不代表博主@加刘景长 的个人观点。

前情提要:





随后2023.04.24

DBD组长路基艾尔在Q群 回应 2023.04.05“某科学一方通行”的BDMV盗用片源问题


DBD制作组对某人乱用资源的说明

本组在动漫花园资源发布站得知有人发布“某科学一方通行”的BDMV,并且在发布页面对我们组进行辱骂诋毁,并且禁止我们使用他们“EMe组”发布的所谓资源。

首先,本组制作的日版“科学一方通行”蓝光Raw资源来源并不是此人发布的资源,而是使用的在U2站最先发布的资源,并且在U2发布此资源的组并没有文字说明“DBD禁止使用”。

再者,最先发布的原资源在合购名单中并没有这个所谓的组的名字,所以此组可能只是把资源从U2转载到公网而已,我也已经查证过,U2最先发布资源的组并不是在动漫花园发布BDMV的组,在U2先发布BDMV的组后来在动漫花园发了BDRip压制版,在BDRip版中也没有对我们组有任何说明的文字。说明在动漫花园发布BDMV的所谓组是转载冒充自购的,从而对其他人进行了误导。

而且最先在动漫花园发布BDMV的组在文字上说明了资源可以随意转载,欢迎使用,EMe组在发布到动漫花园时擅自增加文字内容,对我们组进行的诋毁和侮辱,违背了资源发布者的初衷,这是恶劣的行为,应该抵制此行为!

本组发布的BDRip资源发布时间可你们组发布BDMV的时间更早,资源来源肯定不是你的,不要在这里自以为是!

就算抛开以上几点不谈,动漫花园有明确规定,发布资源禁止辱骂和诋毁发布组,而EMe组此举明显违背了动漫花园的规则,按照规则花园管理组可以对此资源进行删除甚至封禁此发布组,希望大家知道!

本组压制BDRip是为了大众服务,并且很多字幕组使用了我们组的资源,不是为你这种乱喷人的家伙服务的,请你不要太自以为是,希望其他组也能安心做好自己分内的事,不要像离谱字幕组一样在背后背刺别人和恶心别人。











____________________________________________________________________

对此 Eme + MDU成员  JustMonika 表示:





下面转自 Eme + MDU成员  JustMonika 的文章

https://aiccrop.com/2023/block-dbd-raws/


屏蔽 DBD-Raws

CircleCrop·6 天前·101 次阅读

众所周知,DBD-Raws 及其组长黑暗路基艾尔在网络上臭名狼藉。

近期,天使同萌发公告,永久禁止发布 DBD-Raws 的资源。





该组还在蓝光未发布的时候在网上发布“UHD BD remux”,令笔者不禁遐想其原片来源。




因此我创建了一个简单的浏览器脚本来屏蔽他们的组名、QQ群号、宣传语等文本内容。

https://greasyfork.org/zh-CN/scripts/464086-%E5%B1%8F%E8%94%BD-dbd-raws

以下是代码(1.0)

// ==UserScript==// @name 屏蔽 DBD-Raws// @namespace anti-DBD-Raws// @version 1.0// @description a simple script to block the display of DBD-Raws// @author CropCircle// @match http://*/*// @match https://*/*// @grant GM_setValue// @grant GM_getValue// @run-at DOMContentLoaded// @exclude https://*.google.*// @exclude https://*.bing.*// @exclude https://*.baidu.*// @exclude https://greasyfork.org/*// @homepageURL https://greasyfork.org/zh-CN/scripts/464086-%E5%B1%8F%E8%94%BD-dbd-raws// @supportURL https://aiccrop.com/// @license MIT// ==/UserScript==(function() { 'use strict'; var currentURL = window.location.href; (function() { const defaultReplacement = '😅😅😅'; let replacement = GM_getValue('replacement', null); if (replacement === null) { // Prompt the user to enter a replacement text for the first time replacement = prompt('Enter the text you want to replace the keywords with', defaultReplacement); if (replacement !== null) { GM_setValue('replacement', replacement); } else { // Use the default replacement text if the user cancels the prompt replacement = defaultReplacement; } } const keywords = [ '黑暗路基艾尔', '神圣路基艾尔', 'DBD-Raws', 'DBD分流Q群', 'DBD', 'https://afdian.net/@112127luji', '746546998', '560823326', '1158412873', '1040411052', 'https://space.bilibili.com/97177229', 'https://space.bilibili.com/476857955', '神圣之路基艾尔' ]; function traverse(node) { let child, next; switch (node.nodeType) { case 1: // Element case 9: // Document case 11: // Document fragment child = node.firstChild; while (child) { next = child.nextSibling; traverse(child); child = next; } break; case 3: // Text node if (keywords.some((keyword) => node.nodeValue.match(keyword))) { node.nodeValue = node.nodeValue.replace(new RegExp(keywords.join('|'), 'g'), replacement); } break; } } // Create a prompt for the user to enter a replacement text function setReplacement() { const input = prompt('Enter the text you want to replace the keywords with', replacement); if (input !== null) { replacement = input; GM_setValue('replacement', replacement); // Save the new value to GM storage traverse(document.body); // Re-run the text replacement with the new replacement text } } traverse(document.body); })();})();

DMCA:https://aiccrop.com/dmca/

Cover: https://commons.wikimedia.org/wiki/File:Access-denied_story.jpg (Licence: CC BY-SA 4.0)


——————————

附图:

屏蔽DBD-Raws 的功能被举报,该举报已被忽视.jpg



————————————————————————

2023.05.15

MDU 在 BDMV 发布页中写了禁止他们使用,于是DBD组长路基艾尔便写了数篇小作文批判他们。

后来有组员进他们群内讨要说法。






















后续回应







留言


留言列表