When viewing AVI on http-links
When viewing AVI on http-links, there are the following problems:
- the avi files 2GB and longer (Multipart OpenDML) don't play.
- scrolling of avi files doesn't work.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Link issues together to show that they're related.
Learn more.
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
added Component::Web plugin: Mozilla Severity::major Type::bug labels
- Migration Bot changed milestone to %Bugs paradize
changed milestone to %Bugs paradize
- Author
- Jean-Baptiste Kempf assigned to @fenrir and unassigned @MigrationBot
assigned to @fenrir and unassigned @MigrationBot
- Jean-Baptiste Kempf added Component::Demuxers Severity::normal + 1 deleted label and removed Component::Web plugin: Mozilla Severity::major labels
added Component::Demuxers Severity::normal + 1 deleted label and removed Component::Web plugin: Mozilla Severity::major labels
- Owner
See #8793 (closed) for similar complaint on UPNP
Hello.
I test on VLC-2.1 maintenance branch and on master too, this patch fix both problems:
diff --git a/modules/access/http.c b/modules/access/http.c index 64336fc..ff6ff81 100644 --- a/modules/access/http.c +++ b/modules/access/http.c @@ -967,12 +967,9 @@ static int Control( access_t *p_access, int i_query, va_list args ) { /* */ case ACCESS_CAN_SEEK: - pb_bool = (bool*)va_arg( args, bool* ); - *pb_bool = p_sys->b_seekable; - break; case ACCESS_CAN_FASTSEEK: pb_bool = (bool*)va_arg( args, bool* ); - *pb_bool = false; + *pb_bool = p_sys->b_seekable; break; case ACCESS_CAN_PAUSE: case ACCESS_CAN_CONTROL_PACE:
- Owner
That would consider HTTP as FASTSEEK-able. I doubt this is true.
- Owner
Changing FASTSEEK into SEEK is, of course, wrong. AVI needs FASTSEEK.
- Owner
Closed with #8793 (closed) 40c8c1a7
- Jean-Baptiste Kempf changed milestone to %2.2.0
changed milestone to %2.2.0
- Jean-Baptiste Kempf added Status::fixed label
added Status::fixed label
- Jean-Baptiste Kempf closed
closed
- Jean-Baptiste Kempf mentioned in issue #8793 (closed)
mentioned in issue #8793 (closed)
Please register or sign in to reply