• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Off Topic General Discussion Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...)

     
    • 0 Vote(s) - 0 Average

    Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...)

    Bring your resources, guides, questions, suggestions, cluelessness. All is welcome.
    grunt
    Offline

    Junior Member

    Posts: 9
    Threads: 1
    Joined: 2023 Jun
    Reputation: 0
    #19
    2023-08-31, 04:02 AM
    I am enjoying reading this discussion and if anyone is interested would like to share the scripts I use to convert files to 720/1080 HEVC for things I dont really care about (like wife's reality tv...)

    These two scripts will look for supported file types and then convert them to the following settings, I could make it more precise like OPs (look for mkv or mp4 or whatever only) but this works for me well enough.

    Also this is not using FFMPEG, but a custom packaged version of handbrake-CLI with intel gpu drivers built in (for *unix distro) 

    Code:
    #!/bin/bash

    #folder where files area located to be converted
    rootfolder="*******"
    #folder where file will be save
    savefolder="*********"

    echo "#####################################"
    echo "Files must be located in $rootfolder"
    echo "Supported file types in folder will be converted to 720p HEVC 10bit @ 1000kbps, with a CFR value of 21 using opus audio codec at 80kbps including all subtitles in the mkv file format"
    echo "If file or file type is not supported it will just be skipped"
    echo "After completion, all files will be located in the $savefolder"
    echo "#####################################"


    #Handbrake using qsv 10bit hevc with 80kbs OPUS stereo audio including all subtitles


    for file in "$rootfolder"*
    do
      echo -e "The following file will be converted \e[36m$(basename "$file")\e[m"
      final="$(basename "$file")"
      finalclean="${final%.*}"
      save="$savefolder$finalclean-mau5.mkv"
      echo -e "File will be saved as \e[35m$finalclean-mau5.mkv\e[m and saved to \e[36m$savefolder\e[m"
      sleep 5
      flatpak run --command=HandBrakeCLI fr.handbrake.ghb --enable-qsv-decoding --encoder qsv_h265_10bit --width 1280 --height 720p --vb 1000 --no-multi-pass --vfr --cfr 21 --format av_mkv --aencoder opus --ab 80 --mixdown stereo --all-subtitles --input "$file" --output "$save"
    done

    #echo -e "finish converting \e[35m$save\e[m"

    Code:
    #folder where files area located to be converted
    rootfolder="******************"
    #folder where file will be save
    savefolder="*****************"

    echo "#####################################"
    echo "Files must be located in $rootfolder"
    echo "Supported file types in folder will be converted to 1080p HEVC 10bit @ 2500kbps, with a CFR value of 23 using 5.1 OPUS audio codec at 160kbps including all subtitles in the mkv file format"
    echo "If file or file type is not supported it will just be skipped"
    echo "After completion, all files will be located in the $savefolder"
    echo "#####################################"


    #Handbrake using qsv 10bit hevc with 80kbs OPUS stereo audio including all subtitles


    for file in "$rootfolder"*
    do
      echo -e "The following file will be converted \e[36m$(basename "$file")\e[m"
      final="$(basename "$file")"
      finalclean="${final%.*}"
      save="$savefolder$finalclean-mau5.mkv"
      echo -e "File will be saved as \e[35m$finalclean-mau5.mkv\e[m and saved to \e[36m$savefolder\e[m"
      sleep 5
      flatpak run --command=HandBrakeCLI fr.handbrake.ghb --enable-qsv-decoding --encoder qsv_h265_10bit --width 1920 --height 1080 --vb 2500 --no-multi-pass --vfr --cfr 21 --format av_mkv --aencoder opus --ab 160 --mixdown 5point1 --all-subtitles --input "$file" --output "$save"
    done

    #echo -e "finish converting \e[35m$save\e[m"


    I also have a script where you can input whatever you want as values (for when I want to do anything custom)

    Code:
    #folder where files area located to be converted
    rootfolder="/mnt/Chun-Li/._convert/"
    #folder where file will be save
    savefolder="/mnt/Chun-Li/._converted/"

    echo "#####################################"
    echo "Supported file types in folder will be converted to whatever audio/video options specified with all included subtitles"
    echo "If file or file type is not supported it will just be skipped"
    echo "After completion, all files will be located in the $savefolder"
    echo "#####################################"
    echo -e "\e[31mVideo options\e[m"
    echo " "
    # width="USER INPUT"
    read -p "Width of the video? " width
    echo -e "You entered \e[32m$width\e[m"
    # height="USER INPUT"
    read -p "Height of the video? " height
    echo -e "You entered \e[32m$height\e[m"
    # videobitrate="USER INPUT"
    read -p "What video bitrate (in kbps)? " videobitrate
    echo -e "You entered \e[32m$videobitrate\e[m"
    # cfr="USER INPUT"
    read -p "What CFR value (21 default, RF 19-23 for 720p, RF 20-24 for 1080p, RF 22-28 for 2160p)? " cfr
    echo -e "You entered \e[32m$cfr\e[m"
    echo "###################################"
    echo -e "\e[31mAudio Options\e[m"
    echo " "
    # audiocodec="USER INPUT"
    read -p "What audio codec (opus, av_aac, ac3, eac3, copy:)? " audiocodec
    echo -e "You entered \e[32m$audiocodec\e[m"
    # audiobitrate="USER INPUT"
    read -p "What audio bitrate (in kbps)? " audiobitrate
    echo -e "You entered \e[32m$audiobitrate\e[m"
    # audioformat="USER INPUT"
    read -p "How many channel audio? (mono, stereo, dpl1, dpl2, 5point1, 7point1)? " audioformat
    echo -e "You entered \e[32m$audioformat\e[m"
    echo "###################################"
    echo ""
    echo -e "All files saved to \e[36m$savefolder\e[m"
    echo -e "All files will be converted to mkv"

    #Handbrake using qsv 10bit hevc with 80kbs OPUS stereo audio including all subtitles


    for file in "$rootfolder"*
    do
      echo -e "The following file will be converted \e[36m$(basename "$file")\e[m"
      final="$(basename "$file")"
      finalclean="${final%.*}"
      save="$savefolder$finalclean-mau5.mkv"
      echo " "
      echo -e "File will be saved as \e[35m$finalclean-mau5.mkv\e[m and saved to \e[36m$savefolder\e[m"
      sleep 5
      flatpak run --command=HandBrakeCLI fr.handbrake.ghb --enable-qsv-decoding --encoder qsv_h265_10bit --width "$width" --height "$height" --vb "$videobitrate" --cfr "$cfr" --no-multi-pass --vfr --format av_mkv --aencoder "$audiocodec" --ab "$audiobitrate" --mixdown "$audioformat" --all-subtitles --input "$file" --output "$save"
      echo " "
      echo -e "Finished converting \e[35m$finalclean\e[m with a resolution of \e[32m$width\e[m x \e[32m$height\e[m with a bitrate of \e[32m$videobitrate\e[mkbps using the \e[32m$audiocodec\e[m audio codec at a bitrate of \e[32m$audiobitrate\e[mkbps in \e[32m$audioformat\e[m sound to folder \e[35m$savefolder\e[m."
      echo " "
      echo "###################################"
      echo " "
    done

    #echo -e "finish converting \e[35m$save\e[m"
    1
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-23, 08:12 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-23, 09:11 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-23, 09:56 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-23, 10:10 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-25, 04:48 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-26, 06:30 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-26, 06:54 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-26, 07:36 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-27, 05:34 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-27, 05:17 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-27, 10:50 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-27, 11:22 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-27, 05:34 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-27, 03:13 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-27, 11:55 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-30, 08:51 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-30, 09:48 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-08-31, 01:41 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by grunt - 2023-08-31, 04:02 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-31, 04:57 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by grunt - 2023-08-31, 07:23 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-08-31, 07:30 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-01, 08:37 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by grunt - 2023-09-02, 03:22 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-09-03, 02:21 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by grunt - 2023-09-03, 04:52 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-03, 04:03 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by grunt - 2023-09-04, 06:34 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-09-03, 05:19 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-03, 06:30 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-04, 09:11 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-07, 05:59 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-07, 06:37 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-13, 06:18 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-16, 01:05 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-09-16, 01:45 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-16, 12:48 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-09-16, 04:20 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-16, 03:32 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-16, 06:11 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-09-16, 09:36 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-16, 10:07 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-09-17, 06:44 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-20, 07:24 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-09-20, 01:59 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-20, 02:53 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-09-20, 03:09 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-09-21, 07:20 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-10-03, 06:35 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by manu98 - 2023-10-04, 10:35 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-10-05, 07:49 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by manu98 - 2023-10-05, 05:51 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-10-05, 06:38 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-05, 01:53 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-10-05, 06:26 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by manu98 - 2023-10-05, 09:57 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by Nickatron - 2023-10-07, 09:00 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-07, 04:58 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by Nickatron - 2023-10-08, 01:43 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-08, 04:03 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-10-09, 06:34 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-09, 06:38 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-27, 02:18 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by Deleted User - 2023-10-27, 02:40 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-10-27, 05:54 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-30, 11:16 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-31, 01:26 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-10-31, 03:23 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-31, 07:47 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-10-31, 07:57 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-10-31, 10:23 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-11-01, 07:39 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-11-01, 01:19 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-11-01, 04:04 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by Deleted User - 2023-11-01, 04:24 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-11-01, 04:31 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by Deleted User - 2023-11-01, 04:36 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-11-12, 04:13 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2023-11-12, 10:21 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2023-11-13, 12:26 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-01-29, 06:20 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-01-31, 06:43 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by Mel_Gibson_Real - 2024-01-31, 06:36 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-02-01, 03:50 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-02-10, 04:39 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by nyanmisaka - 2024-02-10, 08:51 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-02-14, 02:45 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by nyanmisaka - 2024-02-14, 05:43 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-05-02, 06:38 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-05-20, 05:32 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-05-20, 06:22 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-05-20, 08:16 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-06-28, 09:23 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-06-28, 09:44 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-06-29, 05:08 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-06-29, 05:56 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-06-29, 06:12 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-07-12, 04:26 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-07-18, 07:19 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-10-04, 01:38 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-11-08, 09:11 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-12-27, 07:18 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-12-03, 02:18 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-12-03, 02:28 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-12-03, 02:14 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-12-03, 07:25 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-12-04, 06:50 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-12-04, 01:28 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-12-04, 03:18 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-12-04, 04:27 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-12-04, 05:55 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-12-04, 06:05 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by TheDreadPirate - 2024-12-04, 08:55 PM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-12-05, 02:53 AM
    RE: Encoding Discussion Megathread (ffmpeg, Handbrake, AV1, etc...) - by bitmap - 2024-12-06, 06:41 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode