#!/bin/bash

#this script was written to pass the usable URI provided by the XediX server from the University of Evry, the Physiome Project, for playing video with VLC.
#His work is to rewrite the URI by rewritting the correct domain name (xedixts.ibisc.fr) and by delete the ";suf=.mpg" suffix

vlc `sed "s/http:\/\/localhost:5235\//http:\/\/xedixts.ibisc.fr/" $1 | sed "s/;suf=.mpg//"`

