Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLCKit
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian
VLCKit
Commits
353bbbe1
Commit
353bbbe1
authored
11 years ago
by
Felix Paul Kühne
Browse files
Options
Downloads
Patches
Plain Diff
VLCMedia: enforce parsing of the info we really need
parent
57a77ca6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Sources/VLCMedia.m
+6
-3
6 additions, 3 deletions
Sources/VLCMedia.m
with
6 additions
and
3 deletions
Sources/VLCMedia.m
+
6
−
3
View file @
353bbbe1
...
...
@@ -943,10 +943,13 @@ NSString *VLCMediaTracksInformationTextEncoding = @"encoding"; // NSString
{
if
(
!
areOthersMetaFetched
)
{
areOthersMetaFetched
=
YES
;
/* Force VLCMetaInformationTitle, that will trigger preparsing
* And all the other meta will be added through the libvlc event system */
[
self
fetchMetaInformationFromLibVLCWithType
:
VLCMetaInformationTitle
];
[
self
fetchMetaInformationFromLibVLCWithType
:
VLCMetaInformationTitle
];
[
self
fetchMetaInformationFromLibVLCWithType
:
VLCMetaInformationArtist
];
[
self
fetchMetaInformationFromLibVLCWithType
:
VLCMetaInformationAlbum
];
[
self
fetchMetaInformationFromLibVLCWithType
:
VLCMetaInformationDate
];
[
self
fetchMetaInformationFromLibVLCWithType
:
VLCMetaInformationGenre
];
[
self
fetchMetaInformationFromLibVLCWithType
:
VLCMetaInformationTrackNumber
];
}
if
(
!
isArtURLFetched
)
{
isArtURLFetched
=
YES
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment