Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
7bd6af33
Commit
7bd6af33
authored
Oct 22, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More verbose ffmpeg encoding failure
parent
a66e3c1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
modules/codec/avcodec/encoder.c
modules/codec/avcodec/encoder.c
+17
-3
No files found.
modules/codec/avcodec/encoder.c
View file @
7bd6af33
...
...
@@ -242,9 +242,23 @@ int OpenEncoder( vlc_object_t *p_this )
p_codec
=
avcodec_find_encoder
(
i_codec_id
);
if
(
!
p_codec
)
{
msg_Err
(
p_enc
,
"cannot find encoder %s"
,
psz_namecodec
);
intf_UserFatal
(
p_enc
,
false
,
_
(
"Streaming / Transcoding failed"
),
_
(
"VLC could not find encoder
\"
%s
\"
."
),
psz_namecodec
);
msg_Err
(
p_enc
,
"cannot find encoder %s
\n
"
"*** Your FFMPEG installation is crippled. ***
\n
"
"*** Please check with your FFMPEG packager. ***
\n
"
"*** This is NOT a VLC media player issue. ***
\n
"
,
psz_namecodec
);
intf_UserFatal
(
p_enc
,
false
,
_
(
"Streaming / Transcoding failed"
),
_
(
/* I have had enough of all these MPEG-3 transcoding bug reports.
* Downstream packager, you had better not patch this out, or I will be really
* annoyed. Think about it - you don't want to fork the VLC translation files,
* do you? -- Courmisch, 2008-10-22 */
"It seems your FFMPEG (libavcodec) installation lacks the following encoder:
\n
"
"%s.
\n
"
"If you don't know how to fix this, ask for support from your distribution.
\n
"
"
\n
"
"This is not an error inside VLC media player.
\n
"
"Do not contact the VideoLAN project about this issue.
\n
"
),
psz_namecodec
);
return
VLC_EGENERIC
;
}
...
...
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