From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 3016E404DD for ; Sat, 21 Jan 2023 11:08:02 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 9259668BAD6; Sat, 21 Jan 2023 13:07:59 +0200 (EET) Received: from mail-yw1-f174.google.com (mail-yw1-f174.google.com [209.85.128.174]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 5210A68BA7F for ; Sat, 21 Jan 2023 13:07:53 +0200 (EET) Received: by mail-yw1-f174.google.com with SMTP id 00721157ae682-4d59d518505so107855787b3.1 for ; Sat, 21 Jan 2023 03:07:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:subject:message-id:date:from:in-reply-to:references:mime-version :from:to:cc:subject:date:message-id:reply-to; bh=MDQD3e0lhXfh0Ls3MZB7NdCUwQOg5MRpDfDZ+Q8IuPA=; b=iM31v8H/p4zkcQUTJ8FZmOpr/3Amh/i5PcbaGUrMR65WzD11jgOrmfIk1/fyQCkHyd HC5fqhh1CNymk0ku5dutIGkycy0nZF4JBX8+sgy/oZsuzJxw7H17PNDDu9w5/qoqFRc0 0eTQCoJ110qjqkQNul+8TpZBR+iNRURENn7VSTo5v5eTJjjJQFg/LbyvoDlRx/BYkFIm l9i5Up8LdFU4E3vsfJBPll9NQjrwI7JVXqvVIszTbdVjijLoZeOKu/JVa+qXgObL+vHV UdbrtFU8dtIKQX1ecupICAYKXtaSLYfJJW6bgsFUq8k66DFFnwvWJQdsyG2qJuCOTbla +M9w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:subject:message-id:date:from:in-reply-to:references:mime-version :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=MDQD3e0lhXfh0Ls3MZB7NdCUwQOg5MRpDfDZ+Q8IuPA=; b=YwGGsyicqYv8DU4zQiLg/iZurk6/GPkSWCokzqkj3cem6B1adEKJnHFPE/WVnQUxxM SehYofyPGAM0mf/jbJLWL9ps4dVs+EwB78/t0bhSgJj0iZhHvmpeRxnY1TYWPb12bZNB IDFZVmooTx8mDsowSRRK5+X+OyprZ4vvGj02a0pLhAmHTWwXgvx4GOUicNUXxGqJCy2p V4yilyq49Fp4O8Caos+pDE5Foni7TqQWzlSZOl8itOIjAeh7CT7uIqLZDaQHkPEN+qM5 tJs9wtLVkXnlVX/xAIv2J+Vuj4f4APEenEfDJ/pwW7zUoTNO7ijwjanTXieYIT6QZ3mW Q+fQ== X-Gm-Message-State: AFqh2kps56kA4nIbe30GGWihI2H8xkyJS8YbCin54mzLTUgPQrTXalrt p3Q2hQR0kkrkshJg5eeJm/h9THTww3pUiZq1N/v1U3MTXvbP2w== X-Google-Smtp-Source: AMrXdXuqUhRwdRtqf9eF5zdz90dFyTVGzt2BswC/8y4sDV+nuBjHyDGICRBRt1uXvSIbjpaZlOjbHbLgAUq1obK088k= X-Received: by 2002:a81:49d8:0:b0:4f3:10b0:e7f8 with SMTP id w207-20020a8149d8000000b004f310b0e7f8mr1467330ywa.460.1674299271290; Sat, 21 Jan 2023 03:07:51 -0800 (PST) MIME-Version: 1.0 References: <20230115085021.10890-1-stanislav.ionascu@gmail.com> In-Reply-To: From: Stanislav Ionascu Date: Sat, 21 Jan 2023 11:07:41 +0000 Message-ID: To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH v4] avformat/dvd: new dvd:// protocol for reading dvd folder/images X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On Tue, Jan 17, 2023 at 8:12 AM Nicolas George wrote: > > Stanislav Ionascu (12023-01-15): > > dvd:// protocol uses libdvdread for opening folders and/or disc-images, > > it then either identifies the longest title-set, or uses the title-set > > parameter. > > > > After opening the dvd, libdvdread-protocol will read and output all > > VOBs, in the cell and pack sequence defined by the program-chain. > > > > The (split)-VOB content that is streamed from the folder/disc by > > libdvdread, is given to ffmpeg probed demuxer/decoder, which decodes > > and presents the frames. > > > > The chapter and language stream information is present in the > > side-files (BUP/IFO), which are parsed for identifying the correct > > main video-title-set, but not attached to the stream information. > > Thanks for the new patch. All this information needs to be in the user > documentation, with a little more detail on what it means in practice > (chapters, languages, late probing, etc.). > Thanks for having a look! I've updated the user-docs in the patch. Please let me know if something requires more details. Regards, Stan. > Regards, > > -- > Nicolas George _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".