• 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 Support Troubleshooting newbie: avi video source error in ubuntu

     
    • 0 Vote(s) - 0 Average

    newbie: avi video source error in ubuntu

    only happens to avi files
    Generator
    Offline

    Junior Member

    Posts: 28
    Threads: 0
    Joined: 2025 May
    Reputation: 2
    #2
    8 hours ago (This post was last modified: 8 hours ago by Generator. Edited 1 time in total.)
    AVI files aren't a good container for streaming, the best option is to convert to mp4 or MKV

    Example to find and convert all avi files to mp4.
    Replace "/path/to/directory" with current directory
    Code:
    find /path/to/directory -type f -name "*.avi" | while read -r file; do
        ffmpeg -fflags +genpts -i "$file" -c copy "${file%.avi}.mp4"
    done

    This will create a copy of all avi files in mp4
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    newbie: avi video source error in ubuntu - by justtrife - Today, 06:17 AM
    RE: newbie: avi video source error in ubuntu - by Generator - 8 hours ago
    RE: newbie: avi video source error in ubuntu - by Fate - 3 hours ago

    • 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