Rutorrent Webui

Please login or register.

Login with username, password and session length
Advanced search  

News:

The BEST rtorrent webui.

Pages: 1 ... 4 5 [6] 7 8   Go Down

Author Topic: filemanager plugin  (Read 26737 times)

adventer

  • Newbie
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 1
    • View Profile
Re: filemanager plugin
« Reply #75 on: April 10, 2013, 02:29:03 pm »

Hi.. i got this error, when i tried to compress file using filemanager plugins..
anyone can help me?

Code: [Select]
JS error: [http://x.x.x.x/rutorrent/ : 1730] Uncaught TypeError: Cannot read property 'status' of null
« Last Edit: April 11, 2013, 12:34:34 am by adventer »
Logged

bubbl3

  • Newbie
  • *
  • Karma: -1
  • Offline Offline
  • Posts: 15
    • View Profile
Re: filemanager plugin
« Reply #76 on: April 21, 2013, 12:00:41 pm »

Exact same problem here, ffmpeg is latest, Srceenshot function in Files tab works perfect.
« Last Edit: May 02, 2013, 07:00:00 pm by Kolor »
Logged

Slider324

  • Newbie
  • *
  • Karma: 1
  • Offline Offline
  • Posts: 6
    • View Profile
Re: filemanager plugin
« Reply #77 on: April 23, 2013, 01:15:02 am »

One question can add copy link example have one Imagen can add the option copy url example http://ip/rutorrent/downloads/anydir/image.png, Spanish js Translated:

« Last Edit: April 23, 2013, 04:48:15 am by Slider324 »
Logged

Slider324

  • Newbie
  • *
  • Karma: 1
  • Offline Offline
  • Posts: 6
    • View Profile
Re: filemanager plugin
« Reply #78 on: April 23, 2013, 12:52:01 pm »

Change Dir Files CHMOD 775
« Last Edit: May 02, 2013, 06:59:39 pm by Kolor »
Logged

Dreadnaught

  • Newbie
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 4
    • View Profile
Re: filemanager plugin
« Reply #79 on: May 02, 2013, 03:47:58 pm »

Folders are already set to 777, this doesn't fix the issue as stated at all.
« Last Edit: May 02, 2013, 06:59:13 pm by Kolor »
Logged

Sars

  • Newbie
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 7
    • View Profile
Re: filemanager plugin
« Reply #80 on: June 01, 2013, 05:29:18 pm »

Does screenshot in filemanager plugin really works !

I tried to make screen shot for different mkv and avi files but it didn't work with any of them and just showing me this error :

undefined - 200 Current ffmpeg/ffprobe not supported. Please compile a newer version. Invalid JSON: Current ffmpeg/ffprobe not supported. Please compile a newer version.

The version of filemanager plugin I installed id the newest I think so what is the problem ?
Logged

bubbl3

  • Newbie
  • *
  • Karma: -1
  • Offline Offline
  • Posts: 15
    • View Profile
Re: filemanager plugin
« Reply #81 on: June 26, 2013, 10:23:00 am »

Does screenshot in filemanager plugin really works !

I tried to make screen shot for different mkv and avi files but it didn't work with any of them and just showing me this error :

undefined - 200 Current ffmpeg/ffprobe not supported. Please compile a newer version. Invalid JSON: Current ffmpeg/ffprobe not supported. Please compile a newer version.

The version of filemanager plugin I installed id the newest I think so what is the problem ?

Seems many of us are having this problem, for now there is no solution...
Logged

bubbl3

  • Newbie
  • *
  • Karma: -1
  • Offline Offline
  • Posts: 15
    • View Profile
Re: filemanager plugin
« Reply #82 on: July 20, 2013, 08:47:06 pm »

Tested latest filemanager svn on debian wheezy with latest ffmpeg compiled from sources, same problem just different error:

File Manager ERROR: undefined - 200 Current ffmpeg/ffprobe not supported. Please compile a newer version. SyntaxError: Unexpected token C
Logged

slashfan

  • Newbie
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 1
    • View Profile
Re: filemanager plugin
« Reply #83 on: July 28, 2013, 02:13:22 am »

The solution for that FFmpeg problem is this one. But I only used this one on my seedbox with OS Ubuntu 10.04. I think it'll be easy to find out how to do this for other versions.

Code: [Select]
sudo add-apt-repository ppa:jon-severinsson/ffmpeg
sudo apt-get update
sudo apt-get install ffmpeg

FFmpeg is outdated that's why it won't work I think.

If you don't have the add-apt-repository, just type this:
Code: [Select]
sudo apt-get -y install python-software-properties

For Debian:

Add repository to your /etc/apt/sources.list:

Code: [Select]
# multimedia
deb http://deb-multimedia.org squeeze main

After adding the new repository, update its sources:

Code: [Select]
# apt-get update
Ignore the warning about the missing key for now, we'll fix that right now. To install the keyring package for the new repository, issue the following command:

Code: [Select]
# gpg --keyserver hkp://keyring.debian.org --recv 07DC563D1F41B907
# gpg --export --armor 07DC563D1F41B907 | apt-key add -

Now update your repositories:

Code: [Select]
# apt-get update
The warning from the previous step should be gone, your now ready to rock'n'roll!

Code: [Select]
# apt-get install ffmpeg libmp3lame0

Hopefully it will work for you!
Logged

bubbl3

  • Newbie
  • *
  • Karma: -1
  • Offline Offline
  • Posts: 15
    • View Profile
Re: filemanager plugin
« Reply #84 on: August 02, 2013, 02:14:45 am »

The solution for that FFmpeg problem is this one. But I only used this one on my seedbox with OS Ubuntu 10.04. I think it'll be easy to find out how to do this for other versions.

Code: [Select]
sudo add-apt-repository ppa:jon-severinsson/ffmpeg
sudo apt-get update
sudo apt-get install ffmpeg

FFmpeg is outdated that's why it won't work I think.

If you don't have the add-apt-repository, just type this:
Code: [Select]
sudo apt-get -y install python-software-properties

For Debian:

Add repository to your /etc/apt/sources.list:

Code: [Select]
# multimedia
deb http://deb-multimedia.org squeeze main

After adding the new repository, update its sources:

Code: [Select]
# apt-get update
Ignore the warning about the missing key for now, we'll fix that right now. To install the keyring package for the new repository, issue the following command:

Code: [Select]
# gpg --keyserver hkp://keyring.debian.org --recv 07DC563D1F41B907
# gpg --export --armor 07DC563D1F41B907 | apt-key add -

Now update your repositories:

Code: [Select]
# apt-get update
The warning from the previous step should be gone, your now ready to rock'n'roll!

Code: [Select]
# apt-get install ffmpeg libmp3lame0

Hopefully it will work for you!

Thanks, by i tried the debian multimedia repo on both debian 6 and 7 (old and new stable), but i still get the error.

It does not give me any problem on an old ubuntu 10.04 as you said, i will try to compile an old version of ffmpeg, maybe the problem is that it wants an outdated version and not a recent one...
Logged

Xenus

  • Jr. Member
  • **
  • Karma: 1
  • Offline Offline
  • Posts: 59
    • View Profile
Re: filemanager plugin
« Reply #85 on: August 15, 2013, 01:06:51 pm »

I wonder if the plugin supports both premium account and free registered accounts, because a lot of hosts now ask to register for a free account in order to upload and only works if we change the fileup class to "--auth-free", but if we change this the premium option (--auth only) doesn't work. So you have to choose to use all accounts registered free or all accounts premium.

I'm not a programmer but maybe anyone know how to use both options (registered free and premium) at the same time.

Logged

tmale

  • Newbie
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 9
    • View Profile
Re: filemanager plugin
« Reply #86 on: August 22, 2013, 12:01:03 am »

Thanks for this AMAZING plugin. It has allowed me to easily run a server w/o desktop. One request... is it possible to add Hard Links to the Copy and Move options? AutoTools does this but only automatically. I would like to use the filemanager functionality (selecting multiple directories/files) but have the option to Hard Link to a folder instead of moving or copying.

Thanks again!

EDIT: To enable this functionality, I went to the cp script (plugins/filemanager/scripts/cp) and added "-l" to the cp line like so:

Code: [Select]
##added -l to hardlink instead of copy
cp -rfl --target-directory="$2" "$file" && echo "0: OK" >> "$1/log" || echo "0: FAILED" >> "$1/log"

Now whenever I use filemanager to manually "copy" from my seedbox's downloads folder to my "sendHome" BTSync folder, it actually does a hardlink instead of duplicating the files which saves me huge amounts of disk space. When the sync is done and CouchPotato or SickBeard see the files, they process and delete the sync'd files which deletes the hardlink. I'm free to delete the .torrent data files whenever I wish without it impacting whats syncing. This essentially gives me a manual way of hardlinking like autotools does automatically.
« Last Edit: August 30, 2013, 10:55:23 pm by tmale »
Logged

bubbl3

  • Newbie
  • *
  • Karma: -1
  • Offline Offline
  • Posts: 15
    • View Profile
Re: filemanager plugin
« Reply #87 on: September 29, 2013, 10:52:22 pm »

I cannot find any solution to this after compiling latest ffmpeg from sources and all i could try under debian wheezy.

The screenshots plugin works fine but i get this from the file manager screenshot function:

Code: [Select]
FILE MANAGER: Action has finished :
but no screens are generated.


This is my ffmpeg:

Code: [Select]
ffmpeg version git-2013-09-30-5c7d86c Copyright (c) 2000-2013 the FFmpeg developers
  built on Sep 30 2013 03:26:18 with gcc 4.7 (Debian 4.7.2-5)
  configuration: --enable-libmp3lame --enable-libtheora --enable-libx264 --enable-libgsm --enable-postproc --enable-libxvid --enable-pthreads --enable-libvorbis --enable-gpl --enable-nonfree --enable-filter=movie --enable-avfilter --enable-libfaac --enable-fontconfig --enable-libfreetype
  libavutil      52. 46.100 / 52. 46.100
  libavcodec     55. 33.101 / 55. 33.101
  libavformat    55. 18.104 / 55. 18.104
  libavdevice    55.  3.100 / 55.  3.100
  libavfilter     3. 88.100 /  3. 88.100
  libswscale      2.  5.100 /  2.  5.100
  libswresample   0. 17.103 /  0. 17.103
  libpostproc    52.  3.100 / 52.  3.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

Use -h to get full help or, even better, run 'man ffmpeg'

Any hint?

EDIT: it was a script permission problem, but now i got ffmpeg running forever and not producing any screenshot...
« Last Edit: September 30, 2013, 02:15:57 am by bubbl3 »
Logged

Engel

  • Newbie
  • *
  • Karma: 1
  • Offline Offline
  • Posts: 24
    • View Profile
Re: filemanager plugin
« Reply #88 on: September 30, 2013, 05:36:54 pm »

Did you tested it from command line?

Permissions are right?

Maybe your disk is full?
Logged

bubbl3

  • Newbie
  • *
  • Karma: -1
  • Offline Offline
  • Posts: 15
    • View Profile
Re: filemanager plugin
« Reply #89 on: October 01, 2013, 05:33:52 am »

Did you tested it from command line?

Permissions are right?

Maybe your disk is full?

It takes like 30 sec to generate screens of 128MB divx, waited more than 30 minutes for a 3GB mkv before killing the process.

The Screenshot plugin that uses the ffmpeg too on the other hand takes a 1 minute to generate all the screens of the 3GB mkv.

And no, my disk is not full.
Logged
Pages: 1 ... 4 5 [6] 7 8   Go Up