Documentation ¶
Overview ¶
Package dlna provides DLNA server.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &cobra.Command{ Use: "dlna remote:path", Short: `Serve remote:path over DLNA`, Long: `Run a DLNA media server for media stored in an rclone remote. Many devices, such as the Xbox and PlayStation, can automatically discover this server in the LAN and play audio/video from it. VLC is also supported. Service discovery uses UDP multicast packets (SSDP) and will thus only work on LANs. Rclone will list all files present in the remote, without filtering based on media formats or file extensions. Additionally, there is no media transcoding support. This means that some players might show files that they are not able to play back correctly. ` + dlnaflags.Help + vfs.Help, Annotations: map[string]string{ "versionIntroduced": "v1.46", }, Run: func(command *cobra.Command, args []string) { cmd.CheckArgs(1, 1, command, args) f := cmd.NewFsSrc(args) cmd.Run(false, false, command, func() error { s, err := newServer(f, &dlnaflags.Opt) if err != nil { return err } if err := s.Serve(); err != nil { return err } s.Wait() return nil }) }, }
Command definition for cobra.
Functions ¶
This section is empty.
Types ¶
type UPnPService ¶
type UPnPService interface { Handle(action string, argsXML []byte, r *http.Request) (respArgs map[string]string, err error) Subscribe(callback []*url.URL, timeoutSeconds int) (sid string, actualTimeout int, err error) Unsubscribe(sid string) error }
UPnPService is the interface for the SOAP service.
Directories ¶
Path | Synopsis |
---|---|
Package data provides utilities for DLNA server.
|
Package data provides utilities for DLNA server. |
Package dlnaflags provides utility functionality to DLNA.
|
Package dlnaflags provides utility functionality to DLNA. |
Package upnpav provides utilities for DLNA server.
|
Package upnpav provides utilities for DLNA server. |
Click to show internal directories.
Click to hide internal directories.