當前位置: 首頁>>代碼示例>>Python>>正文


Python OggPage.from_packets方法代碼示例

本文整理匯總了Python中mutagenx.ogg.OggPage.from_packets方法的典型用法代碼示例。如果您正苦於以下問題:Python OggPage.from_packets方法的具體用法?Python OggPage.from_packets怎麽用?Python OggPage.from_packets使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mutagenx.ogg.OggPage的用法示例。


在下文中一共展示了OggPage.from_packets方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_from_packets_position

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
 def test_from_packets_position(self):
     packets = [b"1" * 100000]
     pages = OggPage.from_packets(packets)
     self.failUnless(len(pages) > 1)
     for page in pages[:-1]:
         self.failUnlessEqual(-1, page.position)
     self.failUnlessEqual(0, pages[-1].position)
開發者ID:badwtg1111,項目名稱:mutagen,代碼行數:9,代碼來源:test_ogg.py

示例2: _inject

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
    def _inject(self, fileobj):
        """Write tag data into the Speex comment packet/page."""

        fileobj.seek(0)

        # Find the first header page, with the stream info.
        # Use it to get the serial number.
        page = OggPage(fileobj)
        while not page.packets[0].startswith(b"Speex   "):
            page = OggPage(fileobj)

        # Look for the next page with that serial number, it'll start
        # the comment packet.
        serial = page.serial
        page = OggPage(fileobj)
        while page.serial != serial:
            page = OggPage(fileobj)

        # Then find all the pages with the comment packet.
        old_pages = [page]
        while not (old_pages[-1].complete or len(old_pages[-1].packets) > 1):
            page = OggPage(fileobj)
            if page.serial == old_pages[0].serial:
                old_pages.append(page)

        packets = OggPage.to_packets(old_pages, strict=False)

        # Set the new comment packet.
        packets[0] = self.write(framing=False)

        new_pages = OggPage.from_packets(packets, old_pages[0].sequence)
        OggPage.replace(fileobj, old_pages, new_pages)
開發者ID:jiuerd,項目名稱:kwplayer,代碼行數:34,代碼來源:oggspeex.py

示例3: _inject

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
    def _inject(self, fileobj):
        """Write tag data into the FLAC Vorbis comment packet/page."""

        # Ogg FLAC has no convenient data marker like Vorbis, but the
        # second packet - and second page - must be the comment data.
        fileobj.seek(0)
        page = OggPage(fileobj)
        while not page.packets[0].startswith(b"\x7FFLAC"):
            page = OggPage(fileobj)

        first_page = page
        while not (page.sequence == 1 and page.serial == first_page.serial):
            page = OggPage(fileobj)

        old_pages = [page]
        while not (old_pages[-1].complete or len(old_pages[-1].packets) > 1):
            page = OggPage(fileobj)
            if page.serial == first_page.serial:
                old_pages.append(page)

        packets = OggPage.to_packets(old_pages, strict=False)

        # Set the new comment block.
        data = self.write()
        data = bytes((packets[0][0],)) + struct.pack(">I", len(data))[-3:] + data
        packets[0] = data

        new_pages = OggPage.from_packets(packets, old_pages[0].sequence)
        OggPage.replace(fileobj, old_pages, new_pages)
開發者ID:badwtg1111,項目名稱:kwplayer,代碼行數:31,代碼來源:oggflac.py

示例4: test_too_many_packets

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
    def test_too_many_packets(self):
        packets = [b"1"] * 3000
        pages = OggPage.from_packets(packets)

        for p in pages:
            OggPage.write(p)

        self.failUnless(len(pages) > 3000//255)
開發者ID:badwtg1111,項目名稱:mutagen,代碼行數:10,代碼來源:test_ogg.py

示例5: _inject

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
    def _inject(self, fileobj):
        fileobj.seek(0)
        info = OggOpusInfo(fileobj)
        old_pages = self.__get_comment_pages(fileobj, info)

        packets = OggPage.to_packets(old_pages)
        packets[0] = b"OpusTags" + self.write(framing=False)
        new_pages = OggPage.from_packets(packets, old_pages[0].sequence)
        OggPage.replace(fileobj, old_pages, new_pages)
開發者ID:badwtg1111,項目名稱:kwplayer,代碼行數:11,代碼來源:oggopus.py

示例6: test_random_data_roundtrip

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
    def test_random_data_roundtrip(self):
        try:
            random_file = open("/dev/urandom", "rb")
        except (IOError, OSError):
            print("WARNING: Random data round trip test disabled.")
            return

        for i in range(10):
            num_packets = random.randrange(2, 100)
            lengths = [random.randrange(10, 10000)
                       for i in range(num_packets)]
            packets = [random_file.read(l) for l in lengths]
            self.failUnlessEqual(
                packets, OggPage.to_packets(OggPage.from_packets(packets)))
開發者ID:badwtg1111,項目名稱:mutagen,代碼行數:16,代碼來源:test_ogg.py

示例7: _inject

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
    def _inject(self, fileobj):
        """Write tag data into the Theora comment packet/page."""

        fileobj.seek(0)
        page = OggPage(fileobj)
        while not page.packets[0].startswith(b"\x81theora"):
            page = OggPage(fileobj)

        old_pages = [page]
        while not (old_pages[-1].complete or len(old_pages[-1].packets) > 1):
            page = OggPage(fileobj)
            if page.serial == old_pages[0].serial:
                old_pages.append(page)

        packets = OggPage.to_packets(old_pages, strict=False)

        packets[0] = b"\x81theora" + self.write(framing=False)

        new_pages = OggPage.from_packets(packets, old_pages[0].sequence)
        OggPage.replace(fileobj, old_pages, new_pages)
開發者ID:badwtg1111,項目名稱:kwplayer,代碼行數:22,代碼來源:oggtheora.py

示例8: _inject

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
    def _inject(self, fileobj):
        """Write tag data into the Vorbis comment packet/page."""

        # Find the old pages in the file; we'll need to remove them,
        # plus grab any stray setup packet data out of them.
        fileobj.seek(0)
        page = OggPage(fileobj)
        while not page.packets[0].startswith(b"\x03vorbis"):
            page = OggPage(fileobj)

        old_pages = [page]
        while not (old_pages[-1].complete or len(old_pages[-1].packets) > 1):
            page = OggPage(fileobj)
            if page.serial == old_pages[0].serial:
                old_pages.append(page)

        packets = OggPage.to_packets(old_pages, strict=False)

        # Set the new comment packet.
        packets[0] = b"\x03vorbis" + self.write()

        new_pages = OggPage.from_packets(packets, old_pages[0].sequence)
        OggPage.replace(fileobj, old_pages, new_pages)
開發者ID:kouxulei,項目名稱:xyplayer-package,代碼行數:25,代碼來源:oggvorbis.py

示例9: test_one_packet_per_wiggle

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
 def test_one_packet_per_wiggle(self):
     packets = [b"1" * 511, b"2" * 511, b"3" * 511]
     pages = OggPage.from_packets(
         packets, default_size=1000, wiggle_room=1000000)
     self.failUnlessEqual(len(pages), 2)
     self.failUnlessEqual(OggPage.to_packets(pages), packets)
開發者ID:badwtg1111,項目名稱:mutagen,代碼行數:8,代碼來源:test_ogg.py

示例10: test_crappy_fragmentation

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
 def test_crappy_fragmentation(self):
     packets = [b"1" * 511, b"2" * 511, b"3" * 511]
     pages = OggPage.from_packets(packets, default_size=510, wiggle_room=0)
     self.failUnless(len(pages) > 3)
     self.failUnlessEqual(OggPage.to_packets(pages), packets)
開發者ID:badwtg1111,項目名稱:mutagen,代碼行數:7,代碼來源:test_ogg.py

示例11: test_complete_zero_length

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
 def test_complete_zero_length(self):
     packets = [b""] * 20
     page = OggPage.from_packets(packets)[0]
     new_page = OggPage(io.BytesIO(page.write()))
     self.failUnlessEqual(new_page, page)
     self.failUnlessEqual(OggPage.to_packets([new_page]), packets)
開發者ID:badwtg1111,項目名稱:mutagen,代碼行數:8,代碼來源:test_ogg.py

示例12: test_from_packets_long

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
 def test_from_packets_long(self):
     packets = [b"1" * 100000, b"2" * 100000, b"3" * 100000]
     pages = OggPage.from_packets(packets)
     self.failIf(pages[0].complete)
     self.failUnless(pages[1].continued)
     self.failUnlessEqual(OggPage.to_packets(pages), packets)
開發者ID:badwtg1111,項目名稱:mutagen,代碼行數:8,代碼來源:test_ogg.py

示例13: test_from_packets_short_enough

# 需要導入模塊: from mutagenx.ogg import OggPage [as 別名]
# 或者: from mutagenx.ogg.OggPage import from_packets [as 別名]
 def test_from_packets_short_enough(self):
     packets = [b"1" * 200, b"2" * 200, b"3" * 200]
     pages = OggPage.from_packets(packets)
     self.failUnlessEqual(OggPage.to_packets(pages), packets)
開發者ID:badwtg1111,項目名稱:mutagen,代碼行數:6,代碼來源:test_ogg.py


注:本文中的mutagenx.ogg.OggPage.from_packets方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。