Changes between Version 6 and Version 7 of GENIEducation/SampleAssignments/VLCDashTutorial/Execute


Ignore:
Timestamp:
10/22/13 10:30:07 (10 years ago)
Author:
divyashri.bhat@gmail.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIEducation/SampleAssignments/VLCDashTutorial/Execute

    v6 v7  
    5959== 2.3 Install VLC Client ==
    6060
    61 The actual VLC Client which requests the video can be set up using this script. For streaming this video from the Apache server and in order to instrumentize and measure the DASH bit-rate using !LabWiki we need to execute the following commands.
     61The actual VLC Client which requests the video can be set up using this script. For streaming this video from the Apache server and in order to instrumentize and measure the DASH bit-rate using !LabWiki we need to execute the following commands.[[BR]]
     62
     63This script needs to be executed manually to monitor the progress of VLC Client installation
     64
     65{{{
     66#!/bin/bash
     67
     68apt-get install -y --force-yes subversion
     69echo 'deb http://download.opensuse.org/repositories/home:cdwertmann:oml/xUbuntu_12.04/ /' >> /etc/apt/sources.list.d/oml2.list
     70curl http://download.opensuse.org/repositories/home:cdwertmann:oml/xUbuntu_12.04/Release.key -o /root/Release.key
     71apt-key add - < /root/Release.key 
     72
     73apt-get -y --force-yes update
     74apt-get -y --force-yes -f install
     75apt-get -y --force-yes install oml2
     76
     77apt-get build-dep -y --force-yes vlc
     78cd /root/
     79svn co http://witestlab.poly.edu/repos/omlapps/vlc/vlc-2.1.0-git/
     80cd /root/vlc-2.1.0-git
     81apt-get install -y --force-yes liboml2-dev checkinstall build-essential cmake libtool automake autoconf git-core ffmpeg libxcb-shm0-dev libxcb-xv0-dev libx11-xcb-dev libcdparanoia-dev libcdio-paranoia-dev libcdio-cdda-dev libqt4-dev qt4-dev-tools qt4-qmake nasm yasm libasm-dev lua5.1
     82
     83apt-get autoremove
     84
     85./configure LIBS="-loml2" --enable-run-as-root
     86make
     87make install
     88
     89}}}
    6290
    6391== 2.4 Instrumentize and Measure DASH Bit-Rate using !LabWiki ==
     
    169197
    170198
    171