forked from hummypkg/webif
761def1a24
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@439 2a923420-c742-0410-a762-8d5b09965624
22 lines
469 B
Plaintext
Executable File
22 lines
469 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/var/mongoose/lib/ts.class
|
|
|
|
puts "Content-Type: text/html"
|
|
puts ""
|
|
|
|
cgi_input
|
|
#cgi_dump
|
|
|
|
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"
|
|
|