修改apache Web服务器的流程

时间:2013-01-16 19:52:19

标签: apache gstreamer

我正在使用gstreamer通过http解码视频。为此,我在apache htdocs目录中存储了多媒体文件(ogg,mp4)。然后我可以使用以下管道命令gstreamer解码它们:

gst-launch souphttpsrc location=http://localhost/data/ ! oggdemux ! vorbisdec ! audioconverter ! autoaudiosink

为了模拟重载网络连接中丢失的paquets。我是否可以配置Apache Web服务器的流量来删除某些特定的paquets(例如来自ogg或mp4)或减慢流量?

我需要做些什么来存档。

我在Apache 2中使用xampp安装。

感谢您的回复。

1 个答案:

答案 0 :(得分:0)

最后,它从另一个问题here得到答案。这不是网络服务器,而是系统,在我的情况下,Linux将使用命令tc

执行此操作
sudo tc qdisc change dev eth0 root netem loss 0.1%|

例如