Search code examples
c++libvlc

How to play only the audio of a video file using libvlc?


I would like to play only the audio of a video file using libvlc. How could I do it?

Here's my code:

#include <vlc/vlc.h>

#include <chrono>
#include <iostream>
#include <string>
#include <thread>
#include <vector>

int main()
{
    libvlc_instance_t *inst = libvlc_new(0, nullptr);
    char const *location = "mario_00.webm";
    libvlc_media_t *vlc_media = libvlc_media_new_path(inst, location);

    libvlc_media_player_t *vlc_player = libvlc_media_player_new_from_media(vlc_media);
    libvlc_media_player_play(vlc_player); //this line will play the video and audio

    while(1){
        if(libvlc_media_get_state(vlc_media) == libvlc_Ended){
            break;
        }
        std::this_thread::sleep_for(std::chrono::seconds(1));
    }

    libvlc_media_player_release(vlc_player);
    libvlc_media_release(vlc_media);
    libvlc_release(inst);
}

Solution

  • You can specify the options --no-video with libvlc_new() arguments.

    Its declaration is

    libvlc_instance_t* libvlc_new( int argc, const char *const *argv )
    

    So, it would be like this:

    const char* argv[] = { "--no-video" };
    
    libvlc_instance_t *inst = libvlc_new( 1, argv );
    

    Another option, as mentioned in this thread, is the option --vout none. With this, the code would be:

    const char* argv[] = { "--vout", "none" };
    
    libvlc_instance_t *inst = libvlc_new( 2, argv );
    

    But, you'll get a continuous stream of errors like these while the media (audio) is played:

    [00007f8da808b7f0] main video output error: video output creation failed
    [00007f8dc741e930] main decoder error: failed to create video output
    [00007f8da80d2250] main video output error: video output creation failed
    [00007f8dc741e930] main decoder error: failed to create video output
    [00007f8da80d2250] main video output error: video output creation failed
    [00007f8dc741e930] main decoder error: failed to create video output
    [h264 @ 0x7f8dc74422e0] get_buffer() failed
    [h264 @ 0x7f8dc74422e0] thread_get_buffer() failed
    [h264 @ 0x7f8dc74422e0] decode_slice_header error
    [h264 @ 0x7f8dc74422e0] no frame!
    [00007f8da4045f80] main video output error: video output creation failed
    [00007f8dc741e930] main decoder error: failed to create video output
    [h264 @ 0x7f8dc7453f60] get_buffer() failed
    [h264 @ 0x7f8dc7453f60] thread_get_buffer() failed
    [h264 @ 0x7f8dc7453f60] decode_slice_header error
    [h264 @ 0x7f8dc7453f60] no frame!
    [00007f8d9c045f80] main video output error: video output creation failed
    [00007f8dc741e930] main decoder error: failed to create video output
    [h264 @ 0x7f8dc7499c40] get_buffer() failed
    [h264 @ 0x7f8dc7499c40] thread_get_buffer() failed
    [h264 @ 0x7f8dc7499c40] decode_slice_header error
    [h264 @ 0x7f8dc7499c40] no frame!
    

    The same could also be achieved using libvlc_media_player_set_nsobject() like this:

    libvlc_media_player_set_nsobject( vlc_player, nullptr );
    

    In this case, you don't have to pass argc and argv to libvlc_new().