mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-05-12 20:44:32 +02:00
3.0
-Stream chunk 10MB 1 worker
This commit is contained in:
parent
43b74e9924
commit
a049646f93
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.tonikelope</groupId>
|
||||
<artifactId>MegaBasterd</artifactId>
|
||||
<version>2.99</version>
|
||||
<version>3.0</version>
|
||||
<packaging>jar</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
@ -37,7 +37,7 @@ public final class KissVideoStreamServer implements HttpHandler, SecureSingleThr
|
||||
|
||||
public static final int THREAD_START = 0x01;
|
||||
public static final int THREAD_STOP = 0x02;
|
||||
public static final int CHUNK_WORKERS = 8;
|
||||
public static final int CHUNK_WORKERS = 1;
|
||||
|
||||
private final MainPanel _main_panel;
|
||||
private final ConcurrentHashMap<String, HashMap<String, Object>> _link_cache;
|
||||
|
@ -48,7 +48,7 @@ import org.apache.http.auth.UsernamePasswordCredentials;
|
||||
*/
|
||||
public final class MainPanel {
|
||||
|
||||
public static final String VERSION = "2.99";
|
||||
public static final String VERSION = "3.0";
|
||||
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
|
||||
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;
|
||||
public static final int STREAMER_PORT = 1337;
|
||||
|
@ -325,7 +325,7 @@
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="14" style="2"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Note: if you want to download without using a MEGA PREMIUM account you SHOULD enable MULTI SLOT. "/>
|
||||
<Property name="text" type="java.lang.String" value="Note: if you want to download without using a MEGA PREMIUM account you SHOULD enable MULTI SLOT (try to set as few slots as possible). "/>
|
||||
</Properties>
|
||||
</Component>
|
||||
<Component class="javax.swing.JSeparator" name="jSeparator3">
|
||||
@ -600,7 +600,7 @@
|
||||
</Group>
|
||||
<Component id="limit_upload_speed_checkbox" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace min="0" pref="551" max="32767" attributes="0"/>
|
||||
<EmptySpace min="0" pref="308" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
@ -727,7 +727,7 @@
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="14" style="2"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Note: MULTI-SLOT is required if you want to exit and resume uploads."/>
|
||||
<Property name="text" type="java.lang.String" value="Note: MULTI-SLOT is required if you want to exit and resume uploads (try to set as few slots as possible)."/>
|
||||
</Properties>
|
||||
</Component>
|
||||
</SubComponents>
|
||||
|
@ -616,7 +616,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
megacrypter_reverse_warning_label.setText("Note: you MUST \"OPEN\" this port in your router/firewall.");
|
||||
|
||||
rec_download_slots_label.setFont(new java.awt.Font("Dialog", 2, 14)); // NOI18N
|
||||
rec_download_slots_label.setText("Note: if you want to download without using a MEGA PREMIUM account you SHOULD enable MULTI SLOT. ");
|
||||
rec_download_slots_label.setText("Note: if you want to download without using a MEGA PREMIUM account you SHOULD enable MULTI SLOT (try to set as few slots as possible). ");
|
||||
|
||||
megacrypter_reverse_checkbox.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
megacrypter_reverse_checkbox.setText("Use Megacrypter reverse mode");
|
||||
@ -916,7 +916,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
});
|
||||
|
||||
rec_upload_slots_label.setFont(new java.awt.Font("Dialog", 2, 14)); // NOI18N
|
||||
rec_upload_slots_label.setText("Note: MULTI-SLOT is required if you want to exit and resume uploads.");
|
||||
rec_upload_slots_label.setText("Note: MULTI-SLOT is required if you want to exit and resume uploads (try to set as few slots as possible).");
|
||||
|
||||
javax.swing.GroupLayout uploads_panelLayout = new javax.swing.GroupLayout(uploads_panel);
|
||||
uploads_panel.setLayout(uploads_panelLayout);
|
||||
@ -949,7 +949,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(max_up_speed_spinner, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addComponent(limit_upload_speed_checkbox))
|
||||
.addGap(0, 551, Short.MAX_VALUE)))
|
||||
.addGap(0, 308, Short.MAX_VALUE)))
|
||||
.addContainerGap())))
|
||||
);
|
||||
uploads_panelLayout.setVerticalGroup(
|
||||
|
@ -16,8 +16,8 @@ import static com.tonikelope.megabasterd.MiscTools.*;
|
||||
*/
|
||||
public class StreamChunkWriter implements Runnable, SecureMultiThreadNotifiable {
|
||||
|
||||
public static final int CHUNK_SIZE = 1048576;
|
||||
public static final int BUFFER_CHUNKS_SIZE = 20;
|
||||
public static final int CHUNK_SIZE = 10485760; //10 MB
|
||||
public static final int BUFFER_CHUNKS_SIZE = 3;
|
||||
private long _next_offset_required;
|
||||
private long _bytes_written;
|
||||
private final long _start_offset;
|
||||
|
Loading…
x
Reference in New Issue
Block a user