-
Notifications
You must be signed in to change notification settings - Fork 92
/
hdf_rules.html
1742 lines (1672 loc) · 111 KB
/
hdf_rules.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<div id="main">
<div style="text-align:center"><h1>HD-Forever General Rules</h1></div>
<div class="box pad rule_table" style="padding: 10px 10px 10px 20px;">
<table width="100%">
<tbody><tr class="colhead">
<td style="width: 150px;">Category</td>
<td style="width: 400px;">Additional information</td>
</tr>
<tr class="rowb">
<td class="nobr">
<a href="rules.php?p=golden_rules">Golden Rules</a>
</td>
<td class="nobr">
These are the most important rules. Breaking them will be at your own risk.
</td>
</tr>
<tr class="rowb">
<td class="nobr">
<a href="rules.php?p=inactivity">Account inactivity rules</a>
</td>
<td class="nobr">
Inactivity of an account for a period of 60 days will delete this account
</td>
</tr>
<tr class="rowb">
<td class="nobr">
<a href="rules.php?p=telechargement_bonus">Download and bonuses</a>
</td>
<td class="nobr">
Everything you need to know about downloading, seed points, the exchange store and sending points to a member.
</td>
</tr>
<tr class="rowa">
<td class="nobr">
<a href="rules.php?p=ratio">Ratio</a>
</td>
<td class="nobr">
Rules about the upload/download on the site and the seedtime (minimum sharing time required).
</td>
</tr>
<tr class="rowb">
<td class="nobr">
<a href="rules.php?p=requests">Requests</a>
</td>
<td class="nobr">
The rules governing requests.
</td>
</tr>
<tr class="rowa">
<td class="nobr">
<a href="rules.php?p=collages">Collections</a>
</td>
<td class="nobr">
Collection rules.
</td>
</tr>
<tr class="rowb">
<td class="nobr">
<a href="rules.php?p=clients">Clients</a>
</td>
<td class="nobr">
These are the rules regarding bittorrent clients accepted by the tracker.
</td>
</tr>
<tr class="rowa">
<td class="nobr">
<a href="rules.php?p=upload">Upload</a>
</td>
<td class="nobr">
Rules regarding uploading torrents and permitted content.
</td>
</tr>
<tr class="rowa">
<td class="nobr">
<a href="rules.php?p=upload_series">Upload series</a>
</td>
<td class="nobr">
Rules regarding uploading series and permitted content.
</td>
</tr>
<tr class="rowb">
<td class="nobr">
<a href="rules.php?p=chat">Chat</a>
</td>
<td class="nobr">
Read this before participating in the forums or on the IRC.
</td>
</tr>
<tr class="rowa">
<td class="nobr">
<a href="rules.php?p=tag">Tags</a>
</td>
<td class="nobr">
Tag rules for releases.
</td>
</tr>
</tbody></table>
</div>
</div>
<div id="golden_rules">
<div id="content">
<div class="thin">
<div class="header">
<div style="text-align:center"><h1>Golden Rules</h1></div>
</div>
<br>
<br>
<h4>=> <span style="color:#daa520">"Do not create more than one account."</span></h4><br>
"Members are allowed one account only. If your account has been disabled, contact the staff via ${disabled_channel} on ${irc}."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not trade, sell, or give away your account."</span></h4><br>
"If you no longer wish to use your account, send ${staffpm} and request that your account be deleted."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not share accounts."</span></h4><br>
"Accounts are for personal use only. Giving access to your account in any way (e.g. sharing login, external program) is prohibited. Invite a friend or direct them to the Interviews channel via IRC."<br>
<br>
<h4>=> <span style="color:#daa520">"Don't invite bad members."</span></h4><br>
"You are responsible for your guests. You will be penalized if your guests fail to maintain the required ratio, guests who go against the golden rules will jeopardize your guest privileges and/or your account." <br>
<br>
<h4>=> <span style="color:#daa520">"Do not trade, sell, invite or offer in public."</span></h4><br>
"Invitations should only be given to people you know or trust. There is one exception to this rule: invitations can be offered on forums protected by membership classes on another private tracker where a Official recruiting topic for ${site_name}. Posting in a public area is at your own risk."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not solicit invitations or accounts."</span></h4><br>
"Requesting invitations or an account for another site is strictly prohibited. Invitations may be <i>offered</i>, but not requested, in the site's invitation-only forum (restricted to <a href="\wiki .php?action=article&id=3">Uploader</a> and higher classes)."<br>
<br>
<h4>=> <span style="color:#daa520">"Don't try to manipulate your ratio."</span></h4><br>
"Transferring erroneous data or augmenting your data through unintended uses of the BitTorrent protocol or site options constitutes ratio manipulation. If in doubt, send ${staffpm} for further information ."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not send bad data to the tracker (c.f. Cheating, ratio manipulation, ...)."</span></h4><br>
"Sending erroneous data to the tracker is considered cheating, especially if accomplished using a 'cheating client' or by manipulating an approved client."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not use unsupported clients (see whitelist)."</span></h4><br>
"Your client must be in the <a href="\rules.php?p=clients">Client Whitelist</a>. You may not use any that have been modified in any way. Interested Developers by unstable client testing must obtain staff approval."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not modify .torrent files from ${site_name}."</span></h4><br>
"Adding ad urls other than ${site_name} in .torrents is prohibited. Doing so may categorize you as a 'cheater'. This applies to .torrent files only and those that have been uploaded to a client."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not share your .torrent files or your passkey."</span></h4><br>
"The ${site_name} .torrent files contain your personal url ad with your passkey. Passkeys allow members to change tracker stats."<br>
<br>
<h4>=> <span style="color:#daa520">"Respect the decisions of the staff."</span></h4><br>
"Inconveniences can be discussed privately with the staff member who made the decision. If the moderator has left or is unavailable, you can send an <a href="\staff.php">MPstaff</a>. Do not contact not several moderators hoping to find someone to plead your case."<br>
<br>
<h4>=> <span style="color:#daa520">"Don't override moderation."</span></h4><br>
"\"Overriding moderation\" means a member is 'policing' other members. Confronting, provoking, or chastising members suspected of breaking the rules. Submit a report if you see a violation rule(s)."<br>
<br>
<h4>=> <span style="color:#daa520">"Don't ask for special events."</span></h4><br>
"Special events (e.g. freeleech, neutral leech) are launched at the discretion of the staff. They do not follow specific rules and cannot be requested by members."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not collect user information."</span></h4><br>
"Using the services of ${site_name} to collect any kind of information about users (e.g. IP addresses, personal links) via the use of scripts, the exploitation of vulnerabilities, or by other techniques is prohibited. "<br>
<br>
<h4>=> <span style="color:#daa520">"Do not use the services of ${site_name} (including tracker, website and IRC network) for commercial gain.",</span></h4> <br>
"Commercializing services provided by the code of ${site_name} (e.g. Gazelle, Ocelot) is prohibited. Commercializing content provided by ${site_name} members through the mentioned services (e.g. member torrent data) is prohibited Financial solicitations, and offers of money are also prohibited."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not browse ${site_name} using proxies (including VPNs) with dynamic or shared IP addresses."</span></h4><br>
"You can browse the site with a private server/proxy only if you have a static and personal IP address."<br>
<br>
<h4>=> <span style="color:#daa520">"Do not seek or exploit vulnerabilities."</span></h4><br>
"Any attempted hack will end in a ban."<br>
</div>
</div>
</div>
<div id="inactivity">
<div id="content">
<div class="thin">
<div class="header">
<div style="text-align:center"><h1>Account inactivity rules</h1></div>
</div>
<br>
<br>
<h4>=> <span style="color:red">"Inactivity of an account for a period of 60 days will delete this account, which has become useless for the site.</span></h4><br>
<br>
<h4>=> <span style="color:#daa520">What is not considered activity by the system for account survival:</span></h4><br>
<br>
Stay connected.<br>
<br>
Download a few MB from time to time on a stopped or suspended file. (a file not completed is not taken into account as an activity)<br>
<br>
An upload refused (an unvalidated upload is not counted as an activity)<br>
<br>
Intervene on the shout. (the shout does not keep track of activities on the account or any history)<br>
<br>
Offer invitations. (it would be encouraging to distribute the invitations to anyone, not to mention that the members only have 2 except for the supporting members of the site who receive more)<br>
<br>
Send a PM (not a sufficient activity)<br>
<br>
Surfing the site (not sufficient activity)<br>
<br>
<br>
<h4>=> <span style="color:#daa520">What is considered sufficient activity by the system for account survival:</span></h4><br>
<br>
Complete download of a torrent followed by a minimum of seeding for 72 hours (seeding less than 72 hours is not counted by the system as indicated in the ratio rule)<br>
<br>
an upload validated by the staff followed by a minimum seed of 72 hours (same reason as above)<br>
<br>
creation of posts on the forum (simple answers not being sufficient answer yes no ok hello welcome ....... does not constitute sufficient activity for the site).<br>
<br>
Torrent sharing coupled with a regular connection to the site is sufficient (regular in this case means at least once a month), long-term members sharing on the site are just as important as uploading to a tk.< br>
<br>
<br>
We cannot adapt a rule to particular cases (travel around the world), nowadays even in the depths of the world we manage to have a small connection sufficient for a brief connection to the site (the opportunity may be to share on the forum the experience of the current trip).<br>
<br>
We are a private tracker and as the majority of members know, being registered on such a site is a privilege and not an acquired right, so you must earn the survival of your account by a minimum of activity.<br>
<br>
It is not mentioned on the support page but the supporting members of the site have inactivity immunity (originally on gazelle)<br>
</div>
</div>
</div>
<div id="bonus">
<div id="content">
<div class="thin">
<div class="header">
<h2>Download and Bonuses</h2>
</div>
<div id="actual_rules">
<div class="before_rules">
<h4 id="Intro"><a href="#Introk"><strong>↑</strong></a>Introduction</h4>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
1) Legend of the acronyms that you will find on the torrents page.<br>
2) Using freeleech tokens.<br>
3) % freeleech on torrents from 25 GB.<br>
4) Seed points.<br>
5) The exchange store.<br>
6) Send points to a member.<br>
</div>
</div>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<h4>=> <span style="color:#daa520">1) Legend of the acronyms that you will find on the torrents page. :</span></h4><br>
<br>
<b style="color: #40A497;">[T]</b> Download / <b style="color: #40A497;">[FL]</b> Freeleech / <b style="color: # 40A497;">[S]</b> Report<br>
<br>
<b style="color: blue;">VFF</b> (French Version of France) / <b style="color: blue;">VFQ</b> (French Version of Quebec) / <b style= "color: blue;">VO</b> (Original Version, not French)<br>
<b style="color: blue;">VOF</b> (French Original Version = film in French language) / <b style="color: blue;">VF?</b> (French Version, origin of the unspecified dubbing)<br>
<b style="color: blue;">VFI</b> (International French Version = only 1 existing French dubbing)<br>
<br>
<b style="color: orange;">DC</b> - Director's Cut / <b style="color: orange;">VL</b> - Long Version / <b style="color: orange;" >RM</b> - Remastered / <b style="color: orange;">UC</b> - UnCut / <b style="color: orange;">ES</b> - Special Edition<br>
<br>
<b style="color: red;">Checking</b> Torrent pending until fixed, download not possible.<br>
<b style="color: green;">Completed!</b> Torrent already downloaded by you.<br>
<b style="color: #40A497;">FL Used!</b> You have used a freeleech token on this torrent.<br>
<img src="static/man-with-check.png" style="max-width: 20px;"> Torrent approved by staff.<br>
<b style="color: #40A497;">↓ 75%</b> the ratio count will be 75% of the total torrent size. (discount -25%)<br>
<b style="color: #40A497;">↓ 50%</b> the ratio count will be 50% of the total torrent size. (discount -50%)<br>
<b style="color: #40A497;">↓ 25%</b> the ratio count will be 25% of the total torrent size. (discount -75%)<br>
</ul>
</div>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<h4>=> <span style="color:#daa520">2) Using freeleech tokens. :</span></h4><br>
<br>
What is a Freeleech token for?<br>
<br>
A Freeleech token allows you to download a torrent without its ratio being affected.<br>
On the other hand, if we leave the torrent shared, the seed is counted.<br>
So it's all good and you absolutely have to use them to build a good ratio!<br>
<br>
How many tokens do I have?<br>
<br>
The number of tokens remaining is indicated in the bar at the top, next to the required ratio.<br>
It is also indicated in the member page in the "statistics" section.<br>
<br>
How to use a Freeleech token?<br>
<br>
- Go to the page of the torrent you want to download.<br>
- Then, to download the .torrent file, do not use the T button as usual, but the FL button.<br>
- The site asks for confirmation, click on OK.<br>
<br>
Freeleech Token Notes and Limitations:<br>
<br>
- A Freeleech token can only be used once. If the .torrent file is opened again to download the file, the ratio will be counted.<br>
- A Freeleech token is personal and cannot be transferred or used by another account.<br>
- A Freeleech token expires after 10 days, so do not save the .torrent file to download it later otherwise it will no longer be valid. You must start the download immediately.<br>
- Be careful to check that the torrent on which you are using a token has seed, otherwise the file will never arrive and you will have lost a token.<br>
<br>
The staff won't get you out of ratio problems if you don't use your Tokens!<br>
</ul>
</div>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<h4>=> <span style="color:#daa520">3) % freeleech on torrents from 25 GB.</span></h4><br>
<br>
Torrent 25 GB to 49.9 GB = 25% Free<br>
Torrent from 50 GB to 69.9 GB = 50% free<br>
Torrent from 70 GB to 99.9 GB = 75% free<br>
Torrent of 100 GB + = Freeleech<br>
<br>
Deductions are shown like this:<br>
<br>
↓ 75% the ratio count will be 75% of the total torrent size. (discount -25%)<br>
↓ 50% the ratio count will be 50% of the total torrent size. (discount -50%)<br>
↓ 25% the ratio count will be 25% of the total torrent size. (discount -75%)<br>
</ul>
</div>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<h4>=> <span style="color:#daa520">4) Seed Points.</span></h4><br>
<br>
Seed points are intended to help members new to the site:<br>
- Encourage members to stay in seed on torrents with little sharing in order to avoid the premature death of torrents.<br>
- Encourage members to respond positively to reseed requests.<br>
And not to please the members' e-penis, that's why beyond 3 seeders the torrent no longer earns points.<br>
<br>
You receive points on torrents that have a maximum of 3 seeders Once this number is exceeded, the torrent no longer earns points<br>
<br>
Points per 24H depending on the format:<br>
<br>
- mHD: 1h = 0.8333 (20 points / 24h)<br>
- Bluray Rip (1080p / 720p): 1h = 1.667 (40 points / 24h)<br>
- Remux: 1h = 3.333 (80 points / 24h)<br>
- Full: 1h = 4.1667 (100 points / 24h)<br>
<br>
</ul>
</div>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<h4>=> <span style="color:#daa520">5) The exchange store.</span></h4><br>
<br>
The store allows you to redeem the seed points you have accumulated to increase your ratio, buy freeleech tokens or invites.<br>
<br>
In the object column, select what you want to obtain:<br>
- 10 GB upload = 1,000 points<br>
- 20 GB upload = 2,000 points<br>
- 30 GB upload = 3,000 points<br>
- 40 GB upload = 4,000 points<br>
- 50 GB upload = 5,000 points<br>
- 1 freeleech token = 5,000 points<br>
- 1 invitation = 100,000 points<br>
</ul>
</div>
</div>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<h4>=> <span style="color:#daa520">6) Send points to a member.</span></h4><br>
<br>
Go to the account of the member to whom you wish to send points by clicking on their nickname.<br>
Enter the number of points you want to send in the box.<br>
You can add a text that the member will receive in addition to the system message.<br>
If you check the "Adjust to tax?" you will send the exact number of points chosen to the member, the tax will be deducted on top of your account.<br>
If you do not check the tax will be deducted from the number of points you send, the member will receive the amount less the 10% tax.<br>
</ul>
</div>
</div>
</div>
</div>
<div id="ratio">
<div id="content">
<div class="thin">
<div class="header">
<h2 class="center">Ratio rules</h2>
</div>
<div class="box pad rule_summary">
<br>
<h4>=> <span style="color:#daa520">"Ratio:</span></h4><br>
<br>
<ul>
<li>The <strong>ratio</strong> is calculated by dividing your total uploaded data by your total uploaded data. You can see this in the header of the site or in the statistics part of your profile.
</li>
<li>To maintain your <strong>download privileges</strong>, your ratio must remain above a certain value. This minimum value is the <strong>required ratio</strong>.</li>
<li>If your ratio drops below the required ratio, you will have two weeks to bring your ratio back above the required ratio. During this period you will be in <strong>ratio monitoring</strong>.
</li>
<li>If you fail to reach the required ratio within the time limit, you will no longer be able to download. However, your account will still be active.
</li>
<br>
<div style="color:red;">Warning:</div><br>
<ul><li>Donating to the site will not get you out of watch ratio and will not restore the right to download.</li></ul>
<ul><li>For this you can send a PM to the staff who may, depending on the situation, consider granting you the right to upload in order to raise your ratio.</li>
</ul>
<div style="text-align: center;">
<strong>The seedtime (Minimum mandatory sharing time) per torrent is 72H.<br>
A torrent that is shared less than 72 hours in the last week will not be considered.</strong>
</div>
<br>
<br>
<h4>=> <span style="color:#daa520">Required Ratio:</span></h4><br>
<br>
<ul>
<li>The required ratio represents the minimum ratio you must maintain to not be on ratio watch. You can see your required ratio in the header of the site or in the statistics part of your profile.
</li>
<li>Your required ratio is unique, it is calculated for each account specifically.</li>
<li>Your required ratio is calculated from (1) the total data you uploaded and (2) the total number of torrents you uploaded, but is not limited to your uploaded torrents.
</li>
<li>The ratio system reduces your required ratio when you send a large number of torrents. The more torrents you upload, the lower your required ratio will be and therefore you will be less likely to be on ratio watch.
</li>
</ul>
<br>
<br>
<div style="text-align: center;">
<h4>=> <span style="color:#daa520">Table of required ratios</span></h4><br>
<br>
<br>
<table class="ratio_table">
<tbody><tr class="colhead">
<td class="tooltip">Total downloaded</td>
<td>Required ratio (0% seeded)</td>
<td>Minimum required ratio (100% seeded)</td>
</tr>
<tr class="rowb">
<td>0–5 GB</td>
<td>0.00</td>
<td>0.00</td>
</tr>
<tr class="rowb">
<td>5–10 GB</td>
<td>0.15</td>
<td>0.00</td>
</tr>
<tr class="rowa">
<td>10–20 GB</td>
<td>0.20</td>
<td>0.00</td>
</tr>
<tr class="rowb">
<td>20–30 GB</td>
<td>0.30</td>
<td>0.05</td>
</tr>
<tr class="rowb">
<td>30–40 GB</td>
<td>0.40</td>
<td>0.10</td>
</tr>
<tr class="rowb">
<td>40–50 GB</td>
<td>0.50</td>
<td>0.20</td>
</tr>
<tr class="rowb">
<td>50–60 GB</td>
<td>0.60</td>
<td>0.30</td>
</tr>
<tr class="rowb">
<td>60–80 GB</td>
<td>0.60</td>
<td>0.40</td>
</tr>
<tr class="rowb">
<td>80–100 GB</td>
<td>0.60</td>
<td>0.50</td>
</tr>
<tr class="rowb">
<td>100+ GB</td>
<td>0.60</td>
<td>0.60</td>
</tr>
</tbody></table>
</div>
<br>
<div style="text-align: center;">
<h4>=> <span style="color:#daa520">The seedtime (Minimum mandatory sharing time) per torrent is 72H.</span></h4><br>
</div>
<br>
<strong>Calculation of the required ratio:</strong>
<br>
<ul>
<li>
<strong>1: Determine your required ratio values:</strong> In the table above the row with gray background defines the required ratio values.
</li>
<li>
<strong>2: Determine your current required ratio.</strong> Your current required ratio is a number between the maximum and minimum required ratio value that you determined in the previous step. To determine the actual required ratio value, the system first takes the maximum required ratio value and multiplies it by [1 − (torrents uploaded / torrents completed)].
Another representation of this calculation:
<br>
<br>
<div style="text-align: center;">
<img style="vertical-align: middle;" src="https://chart.googleapis.com/chart?cht=tx&chf=bg,s,FFFFFF00&chl=%5Ctextrm%7B%28maximum+required+ratio%29+%2A+%281-%5Cfrac% 7Bseeding%7D%7Bsnatched%7D%29%7D&chco=999999" alt="required ratio = (maximum required ratio) * (1 - (seeding / snatched))" onload="if (this.src.substr(this .src.length - 9, this.src.length) == 'blank.gif') { this.src = 'https://chart.googleapis.com/chart?cht=tx&chf=bg,s,FFFFFF00& ;chl=%5Ctextrm%7B%28maximum+required+ratio%29+%2A+%281-%5Cfrac%7Bseeding%7D%7Bsnatched%7D%29%7D&chco=' + hexify(getComputedStyle(this.parentNode, null) .color); }">
</div>
<br>
<br>
<ul>
<li>In this calculation, <var>torrents completed</var> is the number of torrents you have completed without deleting them. If you complete the same torrent twice, it will only be counted once. If you delete a completed torrent, it won't count.
</li>
<li>In this calculation, <var>shared torrents</var> is the average number of torrents you have seeded over 72 hours in the last week. If a torrent has been shared for less than 72 hours in the last week, it will not be included in this total.
</li>
</ul>
</li>
<li><strong>3: Higher value if necessary.</strong> When the previously calculated value falls below the minimum required ratio, the minimum required ratio is then taken rather than the calculated value (Indeed the calculated value can be equal to 0 when the number of uploaded torrents is equal to the number of completed torrents).
</li>
</ul>
<br>
<br>
<h4>=> <span style="color:#daa520">Details:</span></h4><br>
<br>
<ul>
<li>If you stop uploading for a week, your required ratio will be equal to your maximum ratio. After resuming the upload for a period of 72 hours, your required ratio will decrease according to the previous calculation method.
</li>
<li>If your downloaded total is less than 25 GB you cannot be in ratio monitoring. In these circumstances, you will not have a required ratio.
</li>
<li>If your downloaded total is less than 20 Gb and the number of completed torrents matches the number of seeded torrents, your ratio will be 0.</li>
</ul>
<br>
<br>
<h4>=> <span style="color:#daa520">Examples:</span></h4><br>
<br>
<ul>
<li>In this example, AKV downloaded 25 GB. It is therefore in the 20-30 GB range. Its maximum required ratio is therefore 0.30 and its minimum required ratio is therefore 0.05.
</li>
<li>In this example, AKV has 90 torrents completed, and is currently seeded to 45 torrents.</li>
<li>To calculate AKV's current required ratio, we take its maximum required ratio, which is 0.30, and multiply it by [1 - (<var>torrents uploaded</var> / <var>torrents completed</ var>)] (which is 0.50). Which give:
<samp>0.30 * [1 - (45 / 90)] = 0.15</samp>
</li>
<li>The resulting ratio is therefore 0.15, which is between the maximum ratio of 0.30 and the minimum ratio of 0.05. The minimum ratio of AKV is therefore 0.15.
</li>
</ul>
<br>
<br>
<h4>=> <span style="color:#daa520">Ratio Watch:</span></h4><br>
<br>
<ul>
<li>You must have downloaded at least 5 Gb for ratio monitoring to start.</li>
<li>If you are on ratio monitoring, you have <strong>2 weeks</strong> to reach your required ratio.
</li>
<li>If you downloaded more than 10 GB while in ratio monitoring, you will not be able to download anymore.</li>
<li>If you can't leave ratio monitoring for two weeks, you won't be able to download anymore. However, your account remains active.
</li>
<li>Ratio monitoring is automatic and cannot be stopped by staff.</li>
</ul>
<br>
<br>
<h4>=> <span style="color:#daa520">Exit ratio monitoring:</span></h4><br>
<br>
<ul>
<li>To exit ratio monitoring, you must either upload torrents or seed more completed torrents. Your ratio must be equal to or greater than the required ratio, to exit ratio monitoring.
</li>
<li>You will be able to download again when your ratio becomes higher than the required ratio.</li>
</ul>
<br>
<br>
</ul></div>
</div>
</div>
</div>
<div id="requests">
<div id="content">
<div class="thin">
<div class="header">
<h2 class="center">Queries</h2>
</div>
<div class="box pad rule_summary" style="padding: 10px 10px 10px 20px;">
<ul>
<li>
<strong>Do not request torrents that violate the rules. </strong> This is your responsibility. Your request will be deleted and the premium will not be refunded.
</li>
<br>
<li>
<strong>Only one title per request.</strong> Only one request per request, no request for several releases.
</li>
<br>
<li>
<strong>Do not cancel a completed request for invalid reasons.</strong>
</li>
<br>
<li>
<strong>All users must have the same chance of being able to complete a request.</strong> Trading upload credits is not allowed. Abusing the request system to trade favors with other users is not tolerated.
</li>
<br>
<li>
<strong>Do not ask the person who made the request to modify the value of the bounty.</strong> The bounty is a reward for helping other users. Any user refusing to fill in a request because the premium is insufficient, exposes himself to sanctions.
</li>
<br>
</ul>
</div>
</div>
</div>
</div>
<div id="collection">
<div id="content">
<div class="thin">
<div class="header">
<h2 class="center">Collections</h2>
</div>
<div class="box pad rule_summary" style="padding: 10px 10px 10px 20px;">
<ul>
<li>
Respect other people's collections, even if you don't like them.
</li>
<br>
<li>
Vandalism of collections will not be tolerated, editing rights will be withdrawn if necessary.
</li>
<br>
<li>
A well-defined group, the Elite and supporters of HD-F can create a group of collections from several collections, having had the prior agreement of the staff.
</li>
<br>
<li>
There can only be one collection for the same theme on the site. Any duplicate collections will be deleted.
</li>
<br>
<li>
The theme and genre of the collections must be clearly indicated.
</li>
<br>
<li>
Please check first if a similar collection is not already present. If so, please contribute to it.
</li>
<br>
<li>
Please give a correct title and a fairly detailed description explaining the contents of the collection.
</li>
<br>
<li>
Please be careful to add a poster for each movie in your collection.
</li>
<br>
<li>
Collections make it possible to group together torrents forming a coherent cinematographic whole. For example: the Star Wars saga, the James Bonds, the Hitchcock collection, etc.
</li>
<br>
<li>
The collections do not need to be complete from the moment they are created: they can be added to progressively.
</li>
</ul>
</div>
</div>
</div>
</div>
<div id=clients>
<div id="content">
<div class="thin">
<div class="header">
<h2 class="center">List of banned clients</h2>
</div>
<div class="boxpad">
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>Customer rules are there to avoid errors. This allows us to filter out tweaked clients that may alter tracker performance or individual stats.
</ul>
</div>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<span style="font-weight: bold;">Modified or unstable BT clients:</span><br>
<br>
Modifying a bittorrent client to impersonate another (spoofing) is prohibited. A member caught using such a client will have their account immediately deactivated.<br>
The use of a modified bittorrent client or a proxy for the purpose of sending incorrect statistics to the tracker (cheating) is prohibited, and will result in the immediate deactivation of the account concerned.<br>
The use of a bittorrent client in an unstable version (alpha, beta, RC) is not permitted, unless specifically authorized by the staff.<br>
</ul>
</div>
<table cellpadding="5" cellspacing="1" border="0" class="border" width="100%">
<tbody><tr class="colhead">
<td style="width: 150px;"><strong>Banned Clients: </strong></td>
<!-- td style="width: 400px;"><strong>Additional Notes</strong></td> -->
</tr>
<tr class="rowb">
<td>Uttorent 3</td>
</tr>
</tbody></table>
</div>
</div>
</div>
</div>
<div id="upload">
<div id="content">
<!-- Uploading Rules -->
<div class="thin">
<div class="header">
<h1 class="center">Upload rules</h1>
</div>
<!-- Uploading Rules Index Links -->
<br>
<form class="search_form" name="rules" onsubmit="return false" action="">
<input type="text" id="search_string" value="Filter">
<span id="Index">Example: the word <strong>X264</strong> refers to rules containing <strong>X264</strong>. The search <strong>1080p+2160p</strong> returns all rules containing <strong>1080p</strong> and <strong>2160p</strong>.</span>
</form>
<br>
<div class="before_rules" style="display: block;">
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<li id="Introk"><a href="#Intro"><strong>Introduction</strong></a></li><br>
<br>
<li id="h1k"><a href="#h1">1. <strong>General Upload Rules</strong></a>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<li id="h1.1k"><a href="#h1.1">1.1. <strong>Exclusive Request</strong></a></li>
<li id="h1.2k"><a href="#h1.2">1.2. <strong>Doubles</strong></a></li>
<li id="h1.3k"><a href="#h1.3">1.3. <strong>Video General</strong></a></li>
<li id="h1.4k"><a href="#h1.4">1.4. <strong>Bonds</strong></a></li>
<li id="h1.5k"><a href="#h1.5">1.5. <strong>Torrents</strong></a></li>
<li id="h1.6k"><a href="#h1.6">1.6. <strong>Soundtracks</strong></a></li>
<li id="h1.7k"><a href="#h1.7">1.7. <strong>Subtitles</strong></a></li>
<li id="h1.8k"><a href="#h1.8">1.8. <strong>Mediainfo/BDinfo</strong></a></li>
</ul>
</div></li>
<li id="h2k"><a href="#h2">2. <strong>Prohibitions</strong></a>
<br>
</li><li id="h3k"><a href="#h3">3. <strong>BluRay source</strong></a>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<li id="h3.1k"><a href="#h3.1">3.1. <strong>FULL BluRay</strong></a></li>
<li id="h3.2k"><a href="#h3.2">3.2. <strong>Remux</strong></a></li>
<li id="h3.3k"><a href="#h3.3">3.3. <strong>Encode 1080p (X264/X265)</strong></a></li>
<li id="h3.4k"><a href="#h3.4">3.4. <strong>Encode 720p (X264/X265)</strong></a></li>
<li id="h3.5k"><a href="#h3.5">3.5. <strong>Encode mHD 1080p (X264/X265)</strong></a></li>
<li id="h3.6k"><a href="#h3.6">3.6. <strong>FULL BluRay 4K</strong></a></li>
<li id="h3.7k"><a href="#h3.7">3.7. <strong>Remux 4K</strong></a></li>
<li id="h3.8k"><a href="#h3.8">3.8. <strong>Encode 2160p (X265)</strong></a></li>
</ul>
</div></li>
<li id="h4k"><a href="#h4">4. <strong>WEB Source</strong></a>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
<ul>
<li id="h4.1k"><a href="#h4.1">4.1. <strong>Web-DL 1080p (H264/H265)</strong></a></li>
<li id="h4.2k"><a href="#h4.2">4.2. <strong>Web-DL 2160p (H265)</strong></a></li>
</ul>
</div></li>
</ul>
</div>
<div id="actual_rules">
<div class="before_rules" style="display: block;">
<h1 id="Intro"><a href="#Introk"><strong>↑</strong></a>Introduction</h1>
<div class="box pad" style="padding: 10px 10px 10px 20px;">
The upload rules below are long and detailed for a reason.<br>
The length is necessary to explain the rules clearly and thoroughly.<br>
For special series upload rules refer to this page:<a href="rules.php?p=upload_series">Series</a><br>
<br>
<span style="font-weight: bold;">Before uploading anything, if you're still not sure what any of the rules mean.</span><br>
<br>
PLEASE ask your questions about the site's user support: <a href="staff.php">Front line support</a>, <a href="forums.php?action=viewforum&forumid=31">the forum for help</a>, or send a <a href="staff.php">MP Staff</a> Addressed to staff if other support directed you to a moderator or if the support was not helpful in your particular case.<p></p><br>
</div>
</div>
<h1 id="h1"><a href="#h1k"><strong>↑</strong></a> <a href="#h1">1.</a> General upload rules></h1><br>
Only the categories "Film, Cartoons, Concert, Bonus comics, Series, Anime series" are authorized on the site, the upload of other categories is prohibited.<br>
<br>
<div style="color:red;">During an up on the site, your torrent is automatically put on hold to be checked and then validated by the staff.
To be validated the torrent must meet all the upload rules of the site and be shared, once validated it will be downloadable by members.
If something is not correct on your upload it will be checked and a PM will be sent to you with details of what needs to be changed.
In the event of non-sharing, the torrent will be deleted after a period of 2 hours, in the event of no response to a PM from the staff notifying you of the modifications to be made to your up, it will be deleted within 2 hours.</div>
<br>
<h2 id="h1.1"><a href="#h1.1k"><strong>↑</strong></a> <a href="#h1.1">1.1</a> None exclusivity request is not allowed on HD-F:</h2>
<ul>
By posting one of your releases on HD-F you tacitly accept that it be reposted elsewhere.
No ban on repost or remuxing/re-encoding will be tolerated on torrents posted on HD-F
Only a delay of 24 hours maximum will be tolerated, provided that you are the encoder of the torrent and that you are part of the internal teams of HD-F.
If you repost here torrents downloaded elsewhere where banning repost is allowed, we will not consider any complaints from those sites.
You will take sole responsibility vis-à-vis the sites that practice this prohibition.
<br>
<br>
<h2 id="h1.2"><a href="#h1.2k"><strong>↑</strong></a> <a href="#h1.2">1.2</a> doubles:</h2>
<ul>
<br>
FULL BR & Remux (1080p/2160p):<br>
<div style="color:red;">from 12/14/2017<br>
The FULL BR & 100% identical Remux (same video quality, same languages, same codecs, same subtitles) even if they come from different teams, are no longer allowed.</div><br>
<div style="color:green;">If they include other languages, subtitles or codecs than the one/those already offered, then they are authorized (example: BluRay from another country, or from another edition).</div><br>
<br>
Encode (Blurayrip) 720p/1080p(i)/2160p (X264/X265)<br>
<div style="color:red;">from 01/10/2019</div><br>
In order to reduce the number of similar encodes on the site, here is what will be authorized and not included as a duplicate for the same film and or series.<br>
1 encode from one of our internal team.<br>
1 encode from an external p2p team.<br>
1 encode from a stage team.<br>
<br>
Encode (mHD) 1080p(i) (X264/X265)<br>
<div style="color:red;">from 01/10/2019</div><br>
Only teams validated by the staff are authorized to upload mHD on HD-F<br>
In order to reduce the number of similar encodes on the site, here is what will be authorized and not included as a duplicate for the same film and or series.<br>
1 encode from one of our internal teams. (XSHD or SEL)<br>
1 encode from one of the external teams. (Xantar or PuNiSHeR03 or HLX or PATOMIEL or SANTACRUZ or WDI or TXG)<br>
<br>
<br>
<span style="font-weight: bold;">The Presentation of torrents "when allociné does not have your film/series" is formatted as follows:</span><br>
"film info" (year, director/producer, actors, gender, nationality.).<br>
"synopsis" (movie story)<br>
The poster is prohibited on the presentation (a location is provided on the upload page).<br>
2 images (banner.) are allowed. (Maximum size 500x150 in jpg, png, gif.).<br>
A signature is tolerated in the Mediainfo section, to be placed above the NFO.<br>
<br>
<h2 id="h1.3"><a href="#h1.3k"><strong>↑</strong></a> <a href="#h1.3">1.3</a> General on the Video:</h2>
<ul>
<br>
Deinterlacing should be used for interlaced sources.<br>
The ivtc must be performed on the sources in 29.970 fps.<br>
The cropping of the black bands is not mandatory (but recommended in 720p format).<br>
Any aspect ratio error greater than 0.5% will result in the withdrawal of the release.<br>
The deblock is set to a minimum, it can go up to -3 for movies. For anime, the deblock value must be positive, given the relative flatness of animations, it can be zero. The minimum value would therefore be 0 to 2.<br>
The video bitrate must in principle have a minimum value depending on the category of the encode (see below). Depending on the source used, it is sometimes useless to have such a high bitrate. This can then be lower than the minimum usually required, so as not to unnecessarily weigh down the MKV file. In this case, the post of the encode on the site must necessarily be accompanied by: - ​​a source/encode comparison of at least 3 screens (frameB images), - the qp part of the encoding log presenting the qpframe I, P and B (the qp frameB should not exceed 20). With these elements, the staff (helped by the encoders) will be able to determine if the encode corresponds to the desired quality on HD-F.<br>
<br>
<h2 id="h1.4"><a href="#h1.4k"><strong>↑</strong></a> <a href="#h1.4">1.4</a> Bonds :</h2>
<ul>
<br>
The end credits with the "credits" must be present.<br>
Encoding must be done in CRF or 2 pass =><div style="color:red;">ABR 1pass in X264 forbidden</div><div style="color:green;">ABR 2pass in X264 allowed </div><div style="color:red;">ABR stats-read=0 in X265 forbidden</div><div style="color:green;">ABR stats-read=2 in X265 allowed<!-- div <br-->
Minimum level 4.1 is required, slow profile high preset in 8 bits.<br>
<br>
<h2 id="h1.5"><a href="#h1.5k"><strong>↑</strong></a> <a href="#h1.5">1.5</a> Torrents :</h2>
<ul>
<br>
1 torrent = 1 movie or 1 season<br>
Are accepted and only in FULL BR the torrents comprising more than 1 films on the same cake when it is a special edition sold like that in the trade.<br>
ISO, BDMV, MKV format allowed<br>
<br>
<h2 id="h1.6"><a href="#h1.6k"><strong>↑</strong></a> <a href="#h1.6">1.6</a> Bands -sound:</h2>
<ul>
<br>
Are authorized DTS-HD, DTS, ATMOS, TrueHD, PCM, FLAC, EAC3, AC-3. <br>
<br>
The VF (F/Q/I) is mandatory at least except for Vostfr.<br>
A non-francophone VO without full French subtitles will not be accepted (except concert or film without dialogue).<br>
<br>
<h2 id="h1.7"><a href="#h1.7k"><strong>↑</strong></a> <a href="#h1.7">1.7</a> Sub -titles:</h2>
<ul>
<br>
Subtitles must be in the MKV, not embedded in the video, in PGS format, SRT/ASS format allowed (not mandatory).<br>
The subtitles must in principle come from the blu-ray.<br>
Forced French subtitles must be present if they exist on the blu-ray.<br>
Full French subtitles must accompany a non-francophone OV (except concert or film without dialogue).<br>
"SDH" subtitles (deaf and hard of hearing) for a French film: PGS du blu-ray welcome.<br>
<br>
<h2 id="h1.8"><a href="#h1.8k"><strong>↑</strong></a> <a href="#h1.8">1.8</a> Mediainfo /BDinfo:</h2>
<ul>
<br>
A Mediainfo/BDinfo is mandatory with each upload.<br>
The x264 or x265 encoding settings should appear in the mediainfo (H264/H265 for WEB-DL 1080p).<br>
The video bitrate must imperatively appear in the mediainfo.<br>
<div style="color:red;">Encodes made from this 26/07/2017 must include in the MEDIA info the complete tag of the source.</div>
The style NFO scene<br>
<br>
V x264 1280x696 4515kb/s 23.976fps<br>
A AC-3 448Kbps 6ch<br>
S French<br>
<br>
ARE NOT ACCEPTED IF THEY ARE ALONE.<br>
Lack of information about encoding etc...<br>
A scene NFO can be placed if accompanied by a complete Mediainfo.<br>
This rule applies to all members of the site who encodes and this for all formats.<br>
<br>
In case of encoding/rip (FULL BR)/Remux from a personal source add a proof (photo of the cake with the name of your Team or your nickname / or taken in front of your pc screen on the login page of HD-F)<br>
It does not apply to the repost of p2p and scene releases.<br>
</ul>
</ul></ul></ul></div></ul></ul></ul></ul></div>
<br>
<h1 id="h2"><a href="#h2k"><strong>↑</strong></a> <a href="#h2">2.</a> Prohibitions</h1>
<ul><br>
- Encode non HD: Dvdrip, Bdrip, Brrip, DvD, CAM/TS/SCREENER, HDtv, TVrip.....<br>
- WEB-DL SD, WEB-DL 720p and all WEBRip<br>
<br>
<div style="color:red;">ABR 1pass in X264 forbidden</div><div style="color:red;">ABR stats-read=0 in X265 forbidden</div><br>
- The mHD, except authorization of the staff, see the forum for the conditions<br>
- The series by episode, incomplete season, complete pack.<br>
- Music torrent (other than BluRay and WEB Video concerts)<br>
- Software Torrent....<br>
- Image Torrent<br>
- Movie Packs (Use Collections)<br>
- Unnecessary files in the torrent: (sample, screens, proof, NFO of the release tolerated)<br>
- Encodes with team logo embedded in the video.<br>
- Re-encodings of encodes.<br>
- Upscaled videos<br>
- Upmixed soundtracks<br>
- Audio: MP3, WMA, AAC, (Soundtrack from the WEB outside the WEB section)<br>
- Non-French-speaking originals without full French subtitles (except concert or film without dialogue).<br>
- ZIP file, .RAR...<br>
- Video / audio..., association for charity.<br>
- Racist, homophobic content...<br>
- Any release of a pornographic type (-18), or related to child exploitation or animal abuse<br>
<div style="color:red;">- For erotic films an exception is possible with the authorization of the staff.</div><br>
<br>
</ul>
</div>
<h1 id="h3"><a href="#h3k"><strong>↑</strong></a> <a href="#h3">3.</a> BluRay Source</h1>
<ul><br>
<br>
<h2 id="h3.1"><a href="#h3.1k"><strong>↑</strong></a> <a href="#h3.1">3.1</a> FULL BluRay</h2>
<ul>
<span style="font-weight: bold;">Video:</span><br>
Untouched (BDMV or ISO mandatory) <div style="color:red;">BD25s are prohibited</div><br>
<br>
<span style="font-weight: bold;">Audio:</span><br>
Untouched<br>
<br>
<div style="color:red;">Exceptionally,</div> the staff may grant authorization on a case-by-case basis to use a VF soundtrack from a DVD (and not from a Web. ..) if the following conditions are met:<br>
- the film was never released with VF on BluRay and is not expected to be released soon.<br>
- the film was released more than 18 months ago on BluRay.<br>
- the added soundtrack must be the VF and must be perfectly synchronized.<br>
- the VF soundtrack from the DVD must be untouched (not encoded) and therefore keep the original quality.<br>
- The NFO must specify the source of the VF <div style="color:red;">These releases will be deleted from the site if the film is then published in BR with VF.</div>
<div style="color:red;">Any publication of a release with Soundtrack from a DVD without prior request for authorization from the staff will be automatically deleted.</div>
<br>
<span style="font-weight: bold;">Subtitles:</span><br>
Untouched (Adding the Chinese subtitles is allowed only if there is no FULL BR with the existing subtitles.)<br>
<br>
<h2 id="h3.2"><a href="#h3.2k"><strong>↑</strong></a> <a href="#h3.2">3.2</a> Remux </h2>
<ul>
<span style="font-weight: bold;">Video:</span><br>
The video must be Untouched (The Remux must be in MKV obligatorily).<br>
<br>
<span style="font-weight: bold;">Audio:</span><br>
The Remux must be in Multi therefore contain the Original Version and the French Version VF (F/Q/I) except for the Vostfr.<br>
With an exception for French films which may only contain the VOF<br>
Soundtracks must be UNTOUCHED (FLAC allowed if reposting from US torrent)<br>
<br>
<div style="color:red;">Exceptionally,</div> the staff may grant authorization on a case-by-case basis to use a VF soundtrack from a DVD (and not from a Web. ..) if the following conditions are met:<br>
- the film was never released with VF on BluRay and is not expected to be released soon.<br>
- the film was released more than 18 months ago on BluRay.<br>
- the added soundtrack must be the VF and must be perfectly synchronized.<br>
- the VF soundtrack from the DVD must be untouched (not encoded) and therefore keep the original quality.<br>
- The NFO must specify the source of the VF <div style="color:red;">These releases will be deleted from the site if the film is then published in BR with VF.</div>
<div style="color:red;">Any publication of a release with Soundtrack from a DVD without prior request for authorization from the staff will be automatically deleted.</div>
<br>
<span style="font-weight: bold;">Subtitles:</span><br>
French subtitles are mandatory (full), forced if available.<br>
With an exception for French films which may not contain French subtitles (if not available on the original BluRay)<br>
VO subtitles are allowed but not required.<br>
<br>
<h2 id="h3.3"><a href="#h3.3k"><strong>↑</strong></a> <a href="#h3.3">3.3</a> Encode 1080p (X264/X265)</h2>
<ul>
<br>
<span style="font-weight: bold;">Video:</span><br>
a) Resolution and Aspect Ratio:<br>
Maximum resolution should be 1920x1080.<br>
For an AR equal to or greater than 1.78, the horizontal resolution should be 1920.<br>
For an AR of 2.35:1, it should be 1920x816.<br>
For an AR of 1.78 or less, the vertical resolution should be 1080.<br>
For an AR of 1.33:1, it should be 1440x1080.<br>
<br>
b) Ref (1080p)<br>
1920x1080 (1.78) → ref4<br>
1920x1036 (1.85) → ref4<br>
1920x872 (2.20) → ref5<br>
1920x854 (2.25) → ref5<br>
1920x816 (2.35) → ref5<br>
1920x800 (2.40) → ref5<br>
For the calculation of the ref, see the note at the bottom of the page<br>
<br>
c) Video Bitrates (1080p)<br>
x264: Minimum 8000 kbps (7000 kbps for anime).<br>
x265: Minimum 4500 Kbps.<br>
Encoding must be done in CRF or 2 pass (ABR forbidden)<br>
(X264) Level 4.1 minimum is required, slow profile high preset in 8 bits.<br>
(X265) Main level [email protected]@Main minimum, 10bits<br>
<br>
NB The keyint_min= is a function of the fps of the source 23 for 23.976 etc...(24.25)<br>
The keyint is a multiple of 10 of the keyint_min<br><br>
<span style="font-weight: bold;">Audio:</span><br>
must contain the Original Version and the French Version VF (F/Q/I) except for the Vostfr.<br>
In order to reduce MKV file size, HD (TrueHD, DTS-HD MA) soundtrack "downmix" to DTS or => E-AC3 5.1 @768 Kbps and E-AC3 7.1 @1024 Kbps are allowed.<br>
AC3 is allowed if the original BluRay does not have a better soundtrack.<br>
<br>
<div style="color:red;">Exceptionally,</div> the staff may grant authorization on a case-by-case basis to use a VF soundtrack from a DVD (and not from a Web. ..) if the following conditions are met:<br>
- the film was never released with VF on BluRay and is not expected to be released soon.<br>
- the film was released more than 18 months ago on BluRay.<br>
- the added soundtrack must be the VF and must be perfectly synchronized.<br>
- the VF soundtrack from the DVD must be untouched (not encoded) and therefore keep the original quality.<br>
- The NFO must specify the source of the VF <div style="color:red;">These releases will be deleted from the site if the film is then published in BR with VF.</div>
<div style="color:red;">Any publication of a release with Soundtrack from a DVD without prior request for authorization from the staff will be automatically deleted.</div>
<br>
<span style="font-weight: bold;">Subtitles:</span><br>
French subtitles are mandatory (full), forced if available.<br>
With an exception for French films which may not contain French subtitles (if not available on the original BluRay)<br>
VO subtitles are allowed but not required.<br>
<br>
<h2 id="h3.4"><a href="#h3.4k"><strong>↑</strong></a> <a href="#h3.4">3.4</a> Encode 720p (X264/X265)</h2>
<ul>
<br>
<span style="font-weight: bold;">Video:</span><br>
b) Ref (720p):<br>
1280x720 (1.78) → ref9<br>
1280x692 (1.85) → ref9<br>
1280x582 (2.20) → ref11<br>
1280x544 (2.35) → ref12<br>
1280x534 (2.40) → ref12<br>
For the calculation of the ref, see the note at the bottom of the page<br>
<br>
c) Video Bitrate (x264 – 720p):<br>
Minimum 4000 kbps (3100 for anime).<br>
Encoding must be done in CRF or 2 pass (ABR forbidden)<br>