Author |
Message |
victor97
|
Posted: Fri Feb 16, 2007 6:10 am |
|
Joined: Fri Feb 24, 2006 9:46 am
Posts: 65
|
Hi,
This is properly a very dummy question, but...
How can I move a movie, that I have recorded from the television, to the mythtv/MythVideo directory so it will be available in the MythVideo application? I would like to know how I could do this using the common menu's in MythTV.
I can not find it anywhere in the manuals or forums, so I starting to think that this is not possible using common Mythtv menu's. I hope I am wrong, because this feels for me like a common feature.
When I know how to do this, I could retrieve information from IMDB, store all the movies on one place etc.
Thanks in advance!
Regards,
Victor
|
|
Top |
|
 |
esherm22
|
Posted: Fri Feb 16, 2007 7:02 am |
|
Joined: Thu Sep 15, 2005 12:37 pm
Posts: 39
Location:
Minnesota
|
I don't think you can do it from the menu but I could be wrong.
I have only done this twice but have never searched imdb after. I don't remember if it copied metadata with the copy process either.
What I have done:
alt-x (to get console window)
cd /myth/pretty
ls (to view directory, if you have alot of shows, then "ls |more" to page it)
cp "show you want...no qoutes" /myth/video
(if you don't want to type the whole file name, hit the "tab" key and it will fill in the rest of the filename for you)
when finished copying, go into video manager and rescan.
|
|
Top |
|
 |
victor97
|
Posted: Fri Feb 16, 2007 7:42 am |
|
Joined: Fri Feb 24, 2006 9:46 am
Posts: 65
|
Esherm,
Thanks for your answer.
This sounds like it is easy to create an extra menu option with an script by myself to create this feature.
I don't mind to dig into this, but can someone give me a hint how I should do that? (I am a newby ...)
|
|
Top |
|
 |
khrusher
|
Posted: Fri Feb 16, 2007 8:33 am |
|
Joined: Tue Apr 13, 2004 6:51 pm
Posts: 890
Location:
Groton, MA
|
A script might not be tough to write to copy a file from tv to video. The tough part will be the scripts usage model. allowing the user to select the particular file to move. were you planning on using the remote for this?
_________________ R5F1 - Dell P4 2.4Ghz 500MB - PVR250 x 2 - GeForce FX 5200 - Onboard sound/NIC 80GB ATA/250GB ATA/400GB SATA
|
|
Top |
|
 |
Too Many Secrets
|
Posted: Fri Feb 16, 2007 8:39 am |
|
Joined: Fri Oct 20, 2006 12:04 pm
Posts: 905
Location:
LA, CA
|
khrusher wrote: allowing the user to select the particular file to move. were you planning on using the remote for this?
This would be a cool feature.
|
|
Top |
|
 |
victor97
|
Posted: Fri Feb 16, 2007 9:01 am |
|
Joined: Fri Feb 24, 2006 9:46 am
Posts: 65
|
khrusher,
This is what I thought:
- In your recorded shows you go to the movie you want to copy to the MythVideo directory
- Then press a button (on keyboard or remote control)
- File is moved to the /myth/MythVideo directory
This should work I think? Or do I forget something?
|
|
Top |
|
 |
thornsoft
|
Posted: Fri Feb 16, 2007 9:07 am |
|
Joined: Fri Nov 18, 2005 9:22 am
Posts: 777
Location:
spencerport, ny (USA)
|
victor97 wrote: khrusher,
This is what I thought: - In your recorded shows you go to the movie you want to copy to the MythVideo directory - Then press a button (on keyboard or remote control) - File is moved to the /myth/MythVideo directory
It would probably be good to add to the existing menu that shows things like delete, job options, play from... etc,.
Just another entry on that menu, and there shouldn't be any more input needed.
|
|
Top |
|
 |
khrusher
|
Posted: Fri Feb 16, 2007 3:18 pm |
|
Joined: Tue Apr 13, 2004 6:51 pm
Posts: 890
Location:
Groton, MA
|
that would work perfectly, but that is more of a mythtv customization. When you mentioned a 'script' to do it, i though you were referring to a shell script that was tied to a menu button. i couldnt imagine the interface.
But your scheme would work, i just dont think I would call it easy "extra menu option with an script "
Might be a good small project to get into if you were intrested in getting into the mythTv guts.
_________________ R5F1 - Dell P4 2.4Ghz 500MB - PVR250 x 2 - GeForce FX 5200 - Onboard sound/NIC 80GB ATA/250GB ATA/400GB SATA
|
|
Top |
|
 |
mjl
|
Posted: Fri Feb 16, 2007 9:39 pm |
|
Joined: Sun Jun 12, 2005 10:55 pm
Posts: 3161
Location:
Warwick, RI
|
Hi,
If you just do an ls on /myth/pretty you will obtain the "pretty name" only and if you do a copy there will most likely be a 47byte file in your video directory.
I use ls -al /myth/pretty to obtain the pretty name and also the real mpg that it points toward.
Then you can (sample) cp /myth/tv/2010_20060412231002_20060412232400.nuv /myth/video/News_at_11pm-Apr12_2006_2329.mpg (all one line)
also:
cp /myth/tv/2010_20060412231002_20060412232400.nuv.png /myth/video/.covers/News.png (all one line)
You have to shorten the name or it won't show up when you search for the cover image as it has a length limit. I don't know what the limit is but the pretty name excedes it.
Now you can put a cover image to your save video and edit the information through mythweb.
Do not mv it, delete it through the menus / mythweb.
As a tip, if you plan to upgrade to a version from the A series (.nuv) to a more recent flavor B,C,D,E series (.mpg), do a
ls -al /myth/pretty > /myth/video/pretty_names.txt
Now when you up grade, you can save those recordings that you forgot to move earlier as you have the needed information.
Mike
|
|
Top |
|
 |
nseger
|
Posted: Wed Feb 21, 2007 10:19 am |
|
Joined: Wed Nov 08, 2006 2:15 am
Posts: 3
|
cp -H will follow the symlink in the /myth/pretty folder and give you a full copy.
cp -H /myth/pretty/fancyname.nuv /myth/video
cheers
NS
|
|
Top |
|
 |