X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=examples%2Flinux%2Fvlc_streaming.py;h=6d01a9b6225a339299d1b47e079987f922015aac;hb=b1a48236183a6acd0a67be0aaedfb528788725b4;hp=25db8fba46cdbcae020d9eb791f526b5f98d2e21;hpb=6edad7ea622a35c759a3667385dbb6a294245ec0;p=nepi.git diff --git a/examples/linux/vlc_streaming.py b/examples/linux/vlc_streaming.py index 25db8fba..6d01a9b6 100644 --- a/examples/linux/vlc_streaming.py +++ b/examples/linux/vlc_streaming.py @@ -17,11 +17,7 @@ # # Author: Alina Quereilhac # -# Instructions to run this example: -# -# 1. First edit the script file where required (See ASSING messages) -# -# 2. Then, run the script: +# Example of how to run this experiment (replace with your credentials): # # $ cd # $ PYTHONPATH=$PYTHONPATH:~/repos/nepi/src python examples/linux/vlc_streaming.py -u inria_nepi -i ~/.ssh/id_rsa_planetlab -a planetlab1.u-strasbg.fr -b planetlab1.utt.fr | vlc - @@ -33,7 +29,6 @@ from nepi.execution.resource import ResourceState, ResourceAction from optparse import OptionParser, SUPPRESS_HELP import os - usage = ("usage: %prog -a -b -u -i ") parser = OptionParser(usage = usage) @@ -54,7 +49,7 @@ username = options.username ssh_key = options.ssh_key ## Create the experiment controller -ec = ExperimentController(exp_id = "demo_CCN") +ec = ExperimentController(exp_id = "vlc_streamming") ## Register node 1 node1 = ec.register_resource("LinuxNode") @@ -99,6 +94,7 @@ ec.set(server, "files", local_path_to_video) ec.set(server, "command", command) ec.register_connection(server, node1) +# Register VLC client command = ("sudo -S dbus-uuidgen --ensure; sleep 3; " "vlc -I dummy rtp://%s:5004/%s " "--sout '#std{access=file,mux=ts,dst=VIDEO}'") % \