2010-12-28, 21:46
according to your log
[/color]
mythicalLibrarian is not obtaining information about the show. mythicalLibrarian has to work properly for a jobSucessful job to be run.
User jobs were implemented so that you can utilize the information generated by mythicalLibrarian in a custom manner. The ffmpeg example is just an example.
The following line converts mpg to mp4
You can verify operation from the command line by running
if the ffmpeg fails then you do not have ffmpeg installed on the system
but, first and foremost, before anything else will work, mythicalLibrarian must work. you can run
mythicalLibrarian was designed to do naming conventions. It imports all mythtv shows into XBMC. That's it's job. It seems that you are trying to use it for one of it's external system calls.
Code:
[font=Courier New][color=#dd0000] [/color][color=#0000bb]mythicalLibrarian [/color][color=#007700]--:[/color][/font][font=Courier New][color=#0000bb]invalid pattern
usage[/color][color=#007700]: [/color][color=#0000bb]mythicalLibrarian [/color][color=#dd0000]'path/to/file' [/color][color=#007700][[/color][color=#dd0000]'title'[/color][color=#007700]] [[/color][color=#dd0000]'subtitle'[/color][/font][font=Courier New][color=#007700]]
[/color][color=#0000bb]usage[/color][color=#007700]: [/color][color=#0000bb]mythicalLibrarian [/color][color=#007700]--[/color][color=#0000bb]mode [/color][color=#007700][[/color][color=#0000bb]parameter[/color][color=#007700]] [[/color][color=#0000bb]parameter[/color][/font][font=Courier New][color=#007700]]
[/color][color=#0000bb]items in brackets are [/color][color=#007700][[/color][color=#0000bb]context sensitve[/color][/font][font=Courier New][color=#007700]]
[/color][color=#0000bb]ensure you have set the user settings set properly [/color][color=#007700]and [/color][/font][font=Courier New][color=#0000bb]run
[/color][color=#007700]--[/color][/font][font=Courier New][color=#0000bb]mythicalDiagnostics before using mythicalLibrarian
in [/color][color=#007700]--[/color][color=#0000bb]scan mode [/color][color=#007700]or as [/color][color=#0000bb]a UserJob[/color][/font][font=Courier New][color=#007700].
For [/color][color=#0000bb]more information type[/color][color=#007700]: [/color][color=#0000bb]mythicalLibrarian [/color][color=#007700]--[/color][color=#0000bb]help [/color][color=#007700]or --[/color][/font][color=#0000bb][font=Courier New]special
done[/font][/color][color=#007700][font=Courier New]. [/font]
mythicalLibrarian is not obtaining information about the show. mythicalLibrarian has to work properly for a jobSucessful job to be run.
User jobs were implemented so that you can utilize the information generated by mythicalLibrarian in a custom manner. The ffmpeg example is just an example.
The following line converts mpg to mp4
Code:
ffmpeg -i $MoveDir/$ShowFileName.$OriginalExt -target ntsc-vcd $MoveDir/$ShowFileName.mp4
You can verify operation from the command line by running
Code:
ffmpeg -i /path_to_my/file.mpg -target ntsc-vcd /path_to_my/file.mp4
if the ffmpeg fails then you do not have ffmpeg installed on the system
Code:
apt-get install ffmpeg #possibly others as well
but, first and foremost, before anything else will work, mythicalLibrarian must work. you can run
Code:
mythicalLibrarian /path_to_my/recording.mpg
mythicalLibrarian was designed to do naming conventions. It imports all mythtv shows into XBMC. That's it's job. It seems that you are trying to use it for one of it's external system calls.