VLC Batch Convert: एक बार में Multiple Files (Settings के साथ)

उन्नत अंतिम अपडेट: लागू होता है: All platforms · VLC 3.0.x

VLC का built-in converter बेसिक है लेकिन batch jobs के लिए पूरी तरह usable है: हर file के लिए same profile, सीधे MP4/H.264। Complex jobs (subtitle burning, per-file settings, hardware encoding) के लिए ffmpeg बेहतर tool है। यह गाइड दोनों को कवर करता है — पहले VLC path, फिर वह ffmpeg one-liner जिसे professionals use करते हैं।

Batch convert with VLC Convert

  1. Media > Convert / Save (Ctrl+R)।

    Convert dialog खुल जाता है।

  2. "Add…" के साथ सभी files add करें।

    Files listed हो जाती हैं।

  3. नीचे "Convert / Save" पर click करें (play arrow नहीं)।

    Conversion options दिखने लगते हैं।

  4. एक profile pick करें: "Video - H.264 + MP3 (MP4)" एक safe universal choice है।

    Profile select हो जाता है।

  5. एक destination folder चुनें और Start पर click करें।

    VLC files को one by one convert करता है।

नोटVLC destination में original name append करता है — output video.mp4 आदि के रूप में आता है। यह overwrite नहीं करेगा; destination folder को तदनुसार adjust करें।

The settings table (what the profiles actually mean)

ProfileVideo codecAudio codecContainerBest for
H.264 + MP3 (MP4)H.264MP3MP4Universal compatibility
H.264 + AAC (MP4)H.264AACMP4TV/phone playback
H.265 + AAC (MP4)HEVCAACMP4Smaller files, modern devices
Video - VP9 + Opus (WebM)VP9OpusWebMWeb playback
Video - Theora + Vorbis (OGG)TheoraVorbisOGGLegacy web

Customize a profile (quality/size trade-off)

  1. Convert dialog में, profile के बगल में wrench icon पर click करें।

    Profile editor खुल जाता है।

  2. Video codec: H.264, bitrate set करें (जैसे 1080p के लिए 4000 kbps) या CRF-style quality ("Encoding parameters" के माध्यम से यदि exposed हो)।

    Quality configure हो जाती है।

  3. Audio codec: AAC 192 kbps; container: MP4/MOV।

    Audio configure हो जाता है।

  4. Default untouched रहे इसलिए नए profile name के रूप में save करें।

    एक custom profile save हो जाता है।

When to use ffmpeg instead

  • Hardware encoding (बहुत faster): ffmpeg -hwaccel auto -i in.mkv -c:v h264_nvenc -c:a aac out.mp4 (NVIDIA) या h264_qsv (Intel)।
  • Subtitle burning: ffmpeg -i in.mkv -vf subtitles=in.mkv -c:a copy out.mp4
  • Per-file settings या complex filter chains।
  • Bulk re-mux without re-encode: ffmpeg -i in.mkv -c copy out.mp4 (seconds, lossless)।

अक्सर पूछे जाने वाले प्रश्न

क्या VLC एक बार में multiple files convert करता है?
हाँ — Convert dialog में सभी files add करें; VLC उन्हें same profile के साथ sequentially process करता है। यह slow है (single-threaded, software encode) लेकिन reliable।
VLC conversion इतनी slow क्यों है?
VLC default रूप से software में encode करता है। Fast batches के लिए, अपने GPU के encoder (nvenc/qsv/amf) के साथ ffmpeg use करें — अक्सर 5–10× faster।
क्या VLC बिना quality खोए convert कर सकता है?
Re-encoding हमेशा कुछ quality खोता है। यदि आपको केवल अलग container (MKV → MP4) चाहिए, तो copy codec trick के साथ "Convert" use करें — या lossless results के लिए ffmpeg -c copy के साथ remux करें।
क्या VLC convert करते समय subtitles रखता है?
Default रूप से external subtitles burned in नहीं होतीं। ffmpeg subtitles= filter उन्हें burn करता है; अन्यथा अधिकांश profiles में subtitles drop हो जाती हैं।
Smart TV के लिए सबसे अच्छा format कौन सा है?
MP4 में H.264 + AAC — हर TV इसे support करता है। HEVC newer TVs पर supported है लेकिन पहले spec sheet check करें।