coderrr-video-accel 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +26 -3
- data/lib/speed_stream.rb +1 -1
- data/lib/video_player.rb +2 -2
- data/video-accel.gemspec +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
@@ -1,5 +1,13 @@
|
|
1
|
-
Video
|
2
|
-
|
1
|
+
Video Stream Acceleration
|
2
|
+
=
|
3
|
+
|
4
|
+
Why would I use this?
|
5
|
+
-
|
6
|
+
|
7
|
+
The only people who would want to use this are those who have a per-connection bandwidth cap which is less than what is required to stream a given video you want to watch.
|
8
|
+
|
9
|
+
What does it do?
|
10
|
+
-
|
3
11
|
|
4
12
|
video-accel is an accelerator for streaming videos on the web. It acts very similar to a download accelerator.
|
5
13
|
|
@@ -7,4 +15,19 @@ A download accelerator will split a file up into a small (~5) number of even par
|
|
7
15
|
|
8
16
|
So instead of splitting the file up into a small number of even parts, video-accel splits the file up into a large number of even parts and then downloads a small number at a time, but it downloads them *in order*. The fact that it downloads them in order is what allows you to still stream the video while it is being downloaded at a faster rate.
|
9
17
|
|
10
|
-
|
18
|
+
Usage
|
19
|
+
-
|
20
|
+
|
21
|
+
vdl http://popular.video.site/url
|
22
|
+
|
23
|
+
The actual video url will be resolved with clipnabber.com
|
24
|
+
|
25
|
+
vdl -s http://direct.url.of/video
|
26
|
+
|
27
|
+
Skip the clipnabber.com resolution
|
28
|
+
|
29
|
+
vdl -t "xterm -e" -p video_player http://url
|
30
|
+
|
31
|
+
Use a custom video player inside of a custom terminal. The defaults are -t "gnome-terminal -e" and -p vplayer
|
32
|
+
|
33
|
+
Currently video-accel only works with Linux.
|
data/lib/speed_stream.rb
CHANGED
data/lib/video_player.rb
CHANGED
data/video-accel.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coderrr-video-accel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- coderrr
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-10-
|
12
|
+
date: 2008-10-27 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|