| OLD | NEW |
| 1 @chapter Protocols | 1 @chapter Protocols |
| 2 @c man begin PROTOCOLS | 2 @c man begin PROTOCOLS |
| 3 | 3 |
| 4 Protocols are configured elements in FFmpeg which allow to access | 4 Protocols are configured elements in FFmpeg which allow to access |
| 5 resources which require the use of a particular protocol. | 5 resources which require the use of a particular protocol. |
| 6 | 6 |
| 7 When you configure your FFmpeg build, all the supported protocols are | 7 When you configure your FFmpeg build, all the supported protocols are |
| 8 enabled by default. You can list all available ones using the | 8 enabled by default. You can list all available ones using the |
| 9 configure option "--list-protocols". | 9 configure option "--list-protocols". |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 Gopher protocol. | 66 Gopher protocol. |
| 67 | 67 |
| 68 @section http | 68 @section http |
| 69 | 69 |
| 70 HTTP (Hyper Text Transfer Protocol). | 70 HTTP (Hyper Text Transfer Protocol). |
| 71 | 71 |
| 72 @section mmst | 72 @section mmst |
| 73 | 73 |
| 74 MMS (Microsoft Media Server) protocol over TCP. | 74 MMS (Microsoft Media Server) protocol over TCP. |
| 75 | 75 |
| 76 @section mmsh |
| 77 |
| 78 MMS (Microsoft Media Server) protocol over HTTP. |
| 79 |
| 80 The required syntax is: |
| 81 @example |
| 82 mmsh://@var{server}[:@var{port}][/@var{app}][/@var{playpath}] |
| 83 @end example |
| 84 |
| 76 @section md5 | 85 @section md5 |
| 77 | 86 |
| 78 MD5 output protocol. | 87 MD5 output protocol. |
| 79 | 88 |
| 80 Computes the MD5 hash of the data to be written, and on close writes | 89 Computes the MD5 hash of the data to be written, and on close writes |
| 81 this to the designated output or stdout if none is specified. It can | 90 this to the designated output or stdout if none is specified. It can |
| 82 be used to test muxers without writing an actual file. | 91 be used to test muxers without writing an actual file. |
| 83 | 92 |
| 84 Some examples follow. | 93 Some examples follow. |
| 85 @example | 94 @example |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 | 219 |
| 211 @section tcp | 220 @section tcp |
| 212 | 221 |
| 213 Trasmission Control Protocol. | 222 Trasmission Control Protocol. |
| 214 | 223 |
| 215 @section udp | 224 @section udp |
| 216 | 225 |
| 217 User Datagram Protocol. | 226 User Datagram Protocol. |
| 218 | 227 |
| 219 @c man end PROTOCOLS | 228 @c man end PROTOCOLS |
| OLD | NEW |