OS4 DepotLogo by Alessandro Bacchia 
(anonymous IP: 3.134.104.173,2193) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu

 Features
   Crashlogs
   Bug tracker
   Locale browser
 

 Categories

   o Audio (343)
   o Datatype (51)
   o Demo (203)
   o Development (596)
   o Document (22)
   o Driver (97)
   o Emulation (147)
   o Game (1004)
   o Graphics (497)
   o Library (115)
   o Network (232)
   o Office (66)
   o Utility (923)
   o Video (69)

Total files: 4365

Full index file
Recent index file

 Links

  Amigans.net
  OpenAmiga
  Aminet
  IntuitionBase


Support the site


 Readme for:  Library » Hollywood » hwp_httpstreamer.lha

Hwp_HTTPStreamer

Description: Hollywood plugin for video/audio streaming
Download: hwp_httpstreamer.lha       (TIPS: Use the right click menu if your browser takes you back here all the time)
Size: 74kb
Version: 1.1
Date: 12 Jan 2018
Author: andreas@airsoftsoftwair.de (Andreas Falkenhahn)
Submitter: uploader
Homepage: http://www.hollywood-mal.com/
Category: library/hollywood
Replaces: library/hollywood/hwp_httpstreamer.lha
License: Other
Distribute: yes
Min OS Version: 4.0
FileID: 10458
 
Comments: 0
Snapshots: 0
Videos: 0
Downloads: 115  (Current version)
206  (Accumulated)
Votes: 0 (0/0)  (30 days/7 days)

Show comments Show snapshots Show videos Show content Show crashlogs Replace file 
httpstreamer.hwp
================

This plugin enables Hollywood to open and stream files from HTTP sources as if
they were stored on a local drive. Once this plugin has been activated, all
Hollywood functions that deal with files will "automagically" be able to open
files from HTTP sources as well.

httpstreamer.hwp uses a sophisticated multi-threaded design for highly efficient
HTTP streaming. Each HTTP connection is managed by a dedicated thread for
optimal performance. The plugin also supports Hollywood 6.0's new streaming APIs
which means that you will be able to stream audio and video files from HTTP
sources with plugins like avcodec.hwp.


Requirements
============

This plugin requires at least Hollywood 6.0 since it uses the file adapter and
streaming APIs introduced with Hollywood 6.0.

For video and audio streaming through avcodec.hwp, you need at least version 1.3
of the avcodec.hwp plugin.


Usage
=====

There are two ways to use this plugin: You can either activate the plugin
globally by ()REQUIRE-ing it. To do this, simply put the following preprocessor
command at the top of your script:

    ()REQUIRE "httpstreamer"

If you activate the plugin via ()REQUIRE, it will become globally available and
all ensuing commands that deal with files will support the opening of files from
HTTP sources. For example, you could do something like this then:

    LoadBrush(1, "http://www.example.com/testpicture.jpg")

If you only need to open very few files from HTTP sources, you can also choose
to not activate the plugin globally via ()REQUIRE but simply use the "Adapter"
tag offered by most Hollywood commands to tell the respective Hollywood command
to open the file using the httpstreamer.hwp plugin. Here is an example:

    LoadBrush(1, "http://www.example.com/testpicture.jpg", {Adapter =
"httpstreamer"})

By using the "Adapter" tag, LoadBrush() is told to open the specified file using
the specified adapter, which is "httpstreamer" in our case. Thus, the "Adapter"
tag allows you to use this plugin even without having ()REQUIRE-d it first. 

Keep in mind that all files declared in the preprocessor commands are linked
automatically into your applet or executable when Hollywood is in compile mode.
Thus, if you do the following, the file will be downloaded and linked to your
applet or executable:

    ()BRUSH 1, "http://www.example.com/testpicture.jpg"
    
This means that your applet or executable will not download the file any more
but they will use a copy of the file that has been linked into the applet or
executable! If you want the applet or executable to always use the copy on the
HTTP server, you have to make sure that the file is never linked to the applet
or executable. This can be achieved by setting the "Link" tag to FALSE:

    ()BRUSH 1, "http://www.example.com/testpicture.jpg", {Link = False}
    
When done like this, Hollywood will never link the file into your applet or
executable. Instead, it will always be downloaded from the given URL.    
    

Options
=======

httpstreamer.hwp supports several options which can either be passed to
()REQUIRE or to the httpstreamer.SetConfig() command. Note that ()REQUIRE
expects a table which can contain multiple options at once whereas
httpstreamer.SetConfig() only accepts a single option at a time.

The following options are currently available:

Fail404:
This tag specifies whether or not httpstreamer.hwp should fail with a "file not
found" error when you pass a URL that points to a non-existent file. Normally,
when you request a non-existent file, HTTP servers will generate a special HTML
page with a "404 - file not found" error, and send that to you instead. So you
will always be getting a file even if you are requesting a non-existent file
which can be confusing. If you really want this behaviour, set this tag to
FALSE. Then httpstreamer.hwp will never fail for any HTTP files and will always
deliver an error page in case of a non-existent file. By default, this tag is
set to TRUE which means that no error page is generated and httpstreamer.hwp
will fail to open non-existent files.

Redir:
Specifies whether or not the web server is allowed to redirect you to a new URL.
Thisdefaults to TRUE which means that redirection is allowed.

Timeout:
This tag allows you to set a connection timeout in milliseconds. The default is
10000 which means that httpstreamer.hwp will timeout in case the server doesn't
reply within an interval of 10 seconds.

Proxy:
You can specify a proxy server here that should be used when making connections.
By default, httpstreamer.hwp doesn't use any proxy server.

UserAgent:
This tag allows you to change the user agent that httpstreamer.hwp sends to the
target server. This is useful with servers that refuse to cooperate with unknown
user agents. By default, httpstreamer.hwp will send "HTTPStreamer.hwp" in the
user agent field of HTTP requests.

TmpFileThreshold:
When requesting larger files, httpstreamer.hwp will use a temporary file for its
buffer instead of memory. This tag allows you to specify a threshold value in
bytes that defines when httpstreamer.hwp should use a temporary file instead of
a memory buffer.
This defaults to 16277216 bytes which means that all files larger than 16 MB
will be buffered on disk whereas all files smaller than 16 MB will be buffered
in memory.

RamFileThreshold:
This is only supported on AmigaOS and compatibles. When using temporary file
buffering (see the documentation of "TmpFileThreshold" above), this tag allows
you to set a threshold value that defines whether the temporary file should be
created in RAM disk or on your hard drive. Whenever the temporary file is bigger
than the threshold value specified here, it will be created on your hard drive.
Otherwise it will be created in T: on your RAM disk. Obviously, this tag must be
set to at least the value of "TmpFileThreshold". It defaults 33554432 bytes on
AmigaOS 3 and 104857600 bytes on all other AmigaOS compatibles. This means that
on AmigaOS 3 all temporary files smaller than 32 MB will be written to T:
whereas on all other systems all temporary files smaller than 100 MB will be
written to T:.

IOBufSize:
This tag allows you to set the IO buffering size. It's normally not necessary to
tinkerwith this. Defaults to 16384 bytes.

SetStreaming:
This tag allows you to set whether httpstreamer.hwp should inform Hollywood that
its file handles are actually streams. By default, httpstreamer.hwp does so.
This allows Hollywood to try to avoid operations that are inefficient on
streaming sources like excessive seeking operations. If you set this tag to
FALSE, Hollywood won't be made aware that the file handles managed by
httpstreamer.hwp are actually streams. This might entail undesirable
consequences because Hollywood might try to seek the file handle to the end and
since the HTTP protocol doesn't easily support direct byte seeking, the seek
operation has to be emulated which can be really expensive.
Seeking to the end of a HTTP stream for instance means that httpstreamer.hwp
will have to download the entire file before it can continue! Thus, you normally
won't want to set this tag to FALSE but keep it to TRUE, which is the default.

SetNoSeek:
If this tag is set to TRUE, httpstreamer.hwp won't support seeking on its file
handles. Note that if you set this tag to TRUE, several file format handlers
which depend on the seek functionality might stop working. That's why it's
recommended to leave this tag at its default value, which is FALSE.

Here is an example of how to use these tags:

    ()REQUIRE "httpstreamer", {UserAgent = "Firefox", Timeout = 20000}

                -OR-

    httpstreamer.SetConfig("UserAgent", "Firefox")
    httpstreamer.SetConfig("Timeout", 20000)

Using httpstreamer.SetConfig() is especially useful if you do not want to
()REQUIRE
the plugin.


Troubleshooting
===============

You have to be careful when using HTTP URLs in preprocessor commands because
when Hollywood is in compile mode, it will link all files declared in the
preprocessor commands to the applet or executable by default. This means that
Hollywood will download all files declared in the preprocessor commands and link
them which isprobably not what you want in that case. You probably want
Hollywood to always use the copy from the server instead of a linked copy. See
the section "Usage" above for information on how you can achieve this.


History
=======

Version 1.1:    (25-Mar-17)
- New: Added 64-bit builds for Windows, Linux, and Mac OS
- New: Added support for Hollywood 7.0's help string feature
- Fix: Documentation wrongly documented "http.SetConfig" when it had to be
"httpstreamer.SetConfig"
- New: Added "Encoded" option; when this is set to TRUE using SetConfig(), HTTP
Streamer will expect
  encoded URLs instead of unencoded URLs (requested by Lazar Zoltan)
- Fix: HTTP Streamer didn't handle HTTP redirect requests correctly (reported by
Dominique Vanderveken)

Version 1.0:    (26-Sep-15)
- First release


Future
======

Direct seeking using HTTP range requests would be nice but not all servers
support it.


Bugs
====

Please report any bugs or issues via the Hollywood forums at
http://forums.hollywood-mal.com/


Copyright
=========

This plugin is (C) Copyright 2014-2017 by Andreas Falkenhahn
<andreas()airsoftsoftwair.de>
Refer to the COPYING file in this package for conditions concerning distribution
of this plugin. Visit http://www.hollywood-mal.com/ for more information
on Hollywood and more plugins.  

File Version Size Date OS Dls Readme
hwp_ahx.lha1.3135kb30 Dec 20194.1226¤ Hwp_AHX - Hollywood plugin for Abyss' Highest eXperience
hwp_aiff.lha1.217kb06 Mar 20194.0146¤ Hwp_AIFF - Hollywood plugin for AIFF file format
hwp_apng.lha1.31Mb11 Dec 20234.022¤ Hwp_APNG - Hollywood plugin for APNG anims
hwp_avcodec.lha1.56Mb10 Oct 20224.088¤ Hwp_AVCodec - Hollywood plugin for AVCodec
hwp_digibooster.lha1.1114kb30 Jul 20154.0260¤ Hwp_DigiBooster - Hollywood plugin for DigiBooster
hwp_flicanim.lha1.227kb22 May 20234.047¤ Hwp_FLICAnim - Hollywood plugin for FLI/FLC anims
hwp_glgalore.lha1.13Mb12 Jan 20184.097¤ Hwp_GLGalore - Hollywood plugin for OpenGL
hwp_hurl.lha2.04Mb30 Apr 20234.042¤ Hwp_hURL - The multi-protocol data transfer plugin
hwp_iconic.lha1.0109kb23 Jan 20224.064¤ Hwp_Iconic - Hollywood plugin for icon loader
hwp_jpeg2000.lha1.2379kb22 May 20234.040¤ Hwp_JPEG2000 - Hollywood plugin for JPEG2000 images
hwp_malibu.lha1.4640kb13 Jan 20184.094¤ Hwp_Malibu - Run Scala presentations
hwp_moviesetter.lha1.257kb30 Jul 20154.0378¤ Hwp_MovieSetter - Hollywood plugin for MovieSetter anims
hwp_muiroyale.lha1.75Mb12 Jan 20184.0310¤ Hwp_muiroyale - Hollywood plugin for MUI GUIs
hwp_oggtheora.lha1.1920kb30 Jul 20154.0282¤ Hwp_OGGTheora - Hollywood plugin for Ogg Theora
hwp_oggvorbis.lha1.1709kb30 Jul 20154.0346¤ Hwp_OGGVorbis - Hollywood plugin for Ogg Vorbis
hwp_pangomonium.lha1.013Mb18 Mar 20244.018¤ hwp_pangomonium - Hollywood plugin for advanced text rendering
hwp_pcx.lha1.226kb22 May 20234.038¤ Hwp_PCX - Hollywood plugin for PCX file format
hwp_plananarama.lha2.2462kb11 Dec 20234.024¤ Hwp_Plananarama - Hollywood plugin for planar screen
hwp_polybios.lha1.322Mb08 Dec 20204.180¤ hwp_polybios - plugin for Hollywood to easily create PDF
hwp_rapagui.lha2.17Mb10 Oct 20224.089¤ Hwp_RapaGUI - Hollywood plugin for GUI creation
hwp_rebelsdl.lha1.15Mb01 Oct 20204.162¤ Rebel SDL - plugin for Hollywood that allows you use SDL
hwp_sid.lha1.0203kb06 Mar 20194.0101¤ HWP_Sid - This plugin allows Hollywood to load and play SID
hwp_sqlite3.lha1.2952kb12 Jan 20184.0209¤ Hwp_SQLite3 - Hollywood plugin for SQL databases
hwp_svgimage.lha1.34Mb06 Mar 20194.0224¤ Hwp_SVGImage - Hollywood plugin for loading SVG images
hwp_tiff.lha1.2808kb22 May 20234.041¤ Hwp_TIFF - Hollywood plugin for TIFF images
hwp_vectorgfx.lha1.21Mb06 Mar 20194.0220¤ Hwp_VectorGFX - Hollywood plugin for vectorgraphics
hwp_xad.lha1.062kb12 Jan 20184.0104¤ hwp_xad - Allow to open archives using the XAD system.
hwp_xlsx.lha1.01Mb05 Nov 20224.039¤ Hwp_XLSX - Hollywood plugin to create and edit XLSX documents
hwp_xmlparser.lha2.0387kb05 Dec 20224.051¤ Hwp_XMLParser - Hollywood plugin for parsing XML files
hwp_xmp.lha1.02Mb06 Apr 20204.081¤ HWP_XMP - Play many module formats with Hollywood
hwp_yafa.lha1.269kb22 May 20234.036¤ Hwp_YAFA - Hollywood plugin for YAFA anims
hwp_zip.lha2.0297kb10 Jul 20234.039¤ Hwp_Zip - Read and write zip archives for Hollywood
Copyright © 2004-2024 by Björn Hagström All Rights Reserved