Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
d51c1abd
Commit
d51c1abd
authored
Sep 09, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
librivox: create a node for each book of the podcast.
parent
470dea53
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
share/lua/sd/librivox.lua
share/lua/sd/librivox.lua
+10
-5
No files found.
share/lua/sd/librivox.lua
View file @
d51c1abd
...
...
@@ -45,16 +45,21 @@ function main()
simplexml
.
add_name_maps
(
podcast
)
local
channel
=
podcast
.
children_map
[
'channel'
][
1
]
local
arturl
=
''
local
books
=
{}
for
_
,
item
in
ipairs
(
channel
.
children
)
do
if
(
item
.
name
==
'item'
)
then
simplexml
.
add_name_maps
(
item
)
local
new_item
=
vlc
.
sd
.
add_item
(
{
path
=
item
.
children_map
[
'link'
][
1
].
children
[
1
],
title
=
item
.
children_map
[
'title'
][
1
].
children
[
1
],
album
=
item
.
children_map
[
'itunes:subtitle'
][
1
].
children
[
1
],
duration
=
string_2_duration
(
item
.
children_map
[
'itunes:duration'
][
1
].
children
[
1
]
),
arturl
=
arturl
}
)
local
book_title
=
item
.
children_map
[
'itunes:subtitle'
][
1
].
children
[
1
]
if
(
books
[
book_title
]
==
nil
)
then
books
[
book_title
]
=
vlc
.
sd
.
add_node
(
{
title
=
book_title
}
)
end
books
[
book_title
]:
add_subitem
(
{
path
=
item
.
children_map
[
'link'
][
1
].
children
[
1
],
title
=
item
.
children_map
[
'title'
][
1
].
children
[
1
],
album
=
item
.
children_map
[
'itunes:subtitle'
][
1
].
children
[
1
],
duration
=
string_2_duration
(
item
.
children_map
[
'itunes:duration'
][
1
].
children
[
1
]
),
arturl
=
arturl
}
)
elseif
(
item
.
name
==
'itunes:image'
)
then
arturl
=
item
.
attributes
[
'href'
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment