Changes between Version 2 and Version 3 of IndyTube


Ignore:
Timestamp:
12/09/07 17:21:37 (5 years ago)
Author:
andycat
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IndyTube

    v2 v3  
    1414It will be released as 0.2 (in view of being different from the above 0.1 set of tags) 
    1515and will be checked in SVN trunk on plumi, as above. 
     16 
     17== Installing IndyTube on Plumi == 
     18 
     19 * http://plumi.org/browser/indytube/trunk/README 
     20 * http://plumi.org/browser/indytube/trunk/INSTALL 
     21 * http://plumi.org/browser/indytube/trunk/INSTALL.plone 
     22 
     23== Restarting Indytube == 
     24 
     25We have noticed that indytube can stop working on occasion. Obviously we are working on a fix for this, but in the meantime, here are some instructions regarding restarting indytube.  
     26 
     27Note that this has been written for a system that has several running Plumi instances (eg: stable and testing). It would be a lot easier with only one running instance - you would skip step 1.b. 
     28 
     29 
     301. kill the process  
     31  a. discover which process is the one you want to restart.   
     32{{{ 
     33user@plumibox:$ ps auxwww | grep indy 
     34 
     35root 16946 0.3 0.3 11484 7636 ? S 19:23 0:33 /usr/bin/python2.4 ./indytube.py 
     36 
     37user 19665 0.0 0.0 3200 720 pts/0 R+ 21:42 0:00 grep indy 
     38}}} 
     39     the second column is the PID 
     40  b. check the /proc psuedo file system , which gives links to info about each process running  
     41{{{ 
     42user@plumibox:$ls -ltr /proc/ 
     43 
     44user@plumibox:$ sudo ls -ld /proc/16946/cwd  
     45lrwxrwxrwx 1 root root 0 2007-07-25 11:44 /proc/16946/cwd -> /opt/instances/indytube-svn 
     46}}} 
     47  c. That's the process to kill, in this case, and where to restart it from: 
     48{{{ 
     49user@plumibox:$sudo kill -9 16946 
     50}}} 
     51 
     522. Restart indytube 
     53 
     54{{{ 
     55user@plumibox:/opt/instances/indytube-svn$ sudo ./run_indytube.sh 
     56}}} 
     57 
     58The directory from which you start indytube represents the Plumi instance that it is running on - make sure you restart it from the right place! 
     59 
     60== Transcoding Errors - Indytube / Variable Frame Rates == 
     61 
     62Errors have been reported when videos inputting into mencoder (Indytube) have a variable frame rate. See this ticket for info: 
     63http://www.plumi.org/ticket/130 
     64 
     65See this wiki page for more research notes: 
     66[[wiki:TranscodingErrors]]