awesome-repositories.com
ब्लॉग
MCP
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टMCP सर्वरहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेस
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 रिपॉजिटरी

Awesome GitHub RepositoriesParallel Encoding and Decoding

Distributes compression and decompression work across multiple threads to improve overall throughput.

Distinct from Video Encoding and Decoding: Distinct from Video Encoding and Decoding: focuses on parallel processing of JPEG XL codec operations, not video codec support.

Explore 2 awesome GitHub repositories matching graphics & multimedia · Parallel Encoding and Decoding. Refine with filters or upvote what's useful.

Awesome Parallel Encoding and Decoding GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • cisco/openh264cisco का अवतार

    cisco/openh264

    6,079GitHub पर देखें↗

    OpenH264, H.264 मानक का उपयोग करके वीडियो एन्कोडिंग और डिकोडिंग के लिए एक लाइब्रेरी है। यह रॉ वीडियो फ्रेम्स को कंप्रेस्ड बाइट स्ट्रीम में बदलने और उन स्ट्रीम्स को वापस रॉ पिक्सेल फ्रेम्स में डीकंप्रेस करने के लिए टूल्स प्रदान करती है। इस प्रोजेक्ट में एक सिमुलकास्ट वीडियो स्ट्रीम जनरेटर शामिल है जो एक ही सोर्स से कई रेजोल्यूशन तैयार करता है। यह क्षमता एडेप्टिव बिटरेट स्ट्रीमिंग और अलग-अलग नेटवर्क स्थितियों में रियल-टाइम वीडियो कम्युनिकेशन को सपोर्ट करती है। यह सिस्टम एडेप्टिव रेट कंट्रोल, स्लाइसिंग-आधारित पैरेलल एन्कोडिंग और YUV प्लानर बफर मैनेजमेंट सहित वीडियो प्रोसेसिंग वर्कफ़्लो को लागू करता है। यह सीक्वेंशियल वीडियो फ्रेम डिपेंडेंसी को संभालने के लिए स्टेट-आधारित बिटस्ट्रीम पार्सिंग का उपयोग करता है।

    Divides video frames into horizontal strips to enable simultaneous compression across multiple CPU cores.

    C++
    GitHub पर देखें↗6,079
  • libjxl/libjxllibjxl का अवतार

    libjxl/libjxl

    3,375GitHub पर देखें↗

    libjxl is an open-source library for encoding and decoding images in the JPEG XL format. It provides the core codec functionality needed to compress source images into JPEG XL and decompress JPEG XL files back into common raster image representations. The library supports adjustable quality, distance, and effort settings during encoding, and handles conversion between different color spaces during encode or decode operations. It also enables reading and writing of embedded metadata such as EXIF, XMP, and color profiles. For performance, libjxl includes benchmarking tools for decode speed and

    Supports distributing JPEG XL encoding and decoding work across multiple threads for improved throughput.

    C++codecdecoderencoder
    GitHub पर देखें↗3,375
  1. Home
  2. Graphics & Multimedia
  3. Video Encoding and Decoding
  4. Parallel Encoding and Decoding

सब-टैग एक्सप्लोर करें

  • Slicing-Based ParallelismParallelization strategy that divides video frames into independent strips for simultaneous encoding. **Distinct from Parallel Encoding and Decoding:** Specifically covers spatial slicing of frames, distinct from general thread distribution for codec operations.