Skip to content

[Question] Where can I find the logs?

I'm receiving the error VLC is unable to open the MRL 'rtsp://..' Check the log for details.

But, I don't know where is the path of the log file.

I'm initializing the library as

        ArrayList<String> options = new ArrayList<>();
        options.add("--aout=opensles");
        options.add("--audio-time-stretch"); // time stretching
        options.add("-vvv"); // verbosity
        options.add("--aout=opensles");
        options.add("--avcodec-codec=h264");
        options.add("--file-logging");
        options.add("--logfile=vlc-log.txt");


        libvlc = new LibVLC(getApplicationContext(), options);