forked from hummypkg/webif
22320536ee
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1420 2a923420-c742-0410-a762-8d5b09965624
19 lines
427 B
Plaintext
Executable File
19 lines
427 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/webif/lib/setup
|
|
require ts.class
|
|
|
|
httpheader
|
|
|
|
set dir [cgi_get dir "/media/My Video"]
|
|
set file [file tail [cgi_get savestream_name]]
|
|
set sfile [cgi_get savestream_source "/mnt/hd3/Streamer_down_file"]
|
|
if {$file == "0"} { exit }
|
|
if {[string length [string trim $file]] == 0} { exit }
|
|
|
|
if {[file extension $file] ne ".mp4"} { append file ".mp4" }
|
|
|
|
file copy $sfile "$dir/$file"
|
|
|