Jump to content

Search the Community

Showing results for tags 'Video'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements
    • Emby Premiere Purchase/Subscription Support
    • Feature Requests
    • Tutorials and Guides
  • Emby Server
    • General/Windows
    • Android Server
    • Asustor
    • FreeBSD
    • Linux
    • NetGear ReadyNAS
    • MacOS
    • QNAP
    • Synology
    • TerraMaster NAS
    • Thecus
    • Western Digital
    • DLNA
    • Live TV
  • Emby Apps
    • Amazon Alexa
    • Android
    • Android TV / Fire TV
    • Windows & Xbox
    • Apple iOS / macOS
    • Apple TV
    • Kodi
    • LG Smart TV
    • Linux & Raspberry Pi
    • Roku
    • Samsung Smart TV
    • Sony PlayStation
    • Web App
    • Windows Media Center
    • Plugins
  • Language-specific support
    • Arabic
    • Dutch
    • French
    • German
    • Italian
    • Portuguese
    • Russian
    • Spanish
    • Swedish
  • Community Contributions
    • Ember for Emby
    • Fan Art & Videos
    • Tools and Utilities
    • Web App CSS
  • Testing Area
    • WMC UI (Beta)
  • Other
    • Non-Emby General Discussion
    • Developer API
    • Hardware
    • Media Clubs

Blogs

  • Emby Blog

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

  1. Hello All, Im a bit new at this I just installed emby server on my Mac computer and just started with adding a couple of files to test it on my computer, S8 phone and Smart TV. However I am able to play all videos on both my mac and android phone but when I try on my Smart TV some wont play and I get error HTTP Status code returned by the server was 500 Im not sure why they wont play as they are mp4 videos, Im attaching the log file I got see if you guys could help me with it. Thanks in advance. error log Smart TV.txt
  2. I just bought an emby lifetime subscription today and I can't get any of the android apps to work. I can log in fine to Web Gui, Emby Theater, Kodi work (although EmbyCon is extremely slow and part of the reason I want to use the apps). I bought this subscription mostly to use the apps so I'm currently feeling like I wasted money. I can log into each of the apps (Fire TV and Android Phone). I have used my reverse proxy using apache, direct https and direct http ports and I can sign in using all of them but when I try to select something to play it just sits there. Although sometimes it seems I can get a SSL Handshake Error and other times it seems like it's not even recognized. Any ideas on what could be wrong? I have attached a couple server log.
  3. When I press on a video, it shows an information screen with media info, a thumbnail, and play/download/delete buttons. Is there a way to skip or bypass this screen and just play the video by pressing on it?
  4. Hi, Where can I see the audio and video formats not yet supported by Emby Server? I have in the collections several formats and some are not reproduced. Thank you
  5. Why: mediacowboy needed something to help find videos that wouldn't play directly on the Roku, but ended up required transcoding to do so. Notes: This only detects at present very basic reasons a file might fail. Container not mkv, mp4, mov, m4v, m3u8, ts Video Codec not H.264 Audio Codec not AC3 or Stero AAC Requirements: AutoIt FFMpeg Instructions: Install AutoIt and set it to execute scripts when double clicked. Create a folder somewhere...lets call it "Roku Detect uncompliant Videos" just to be unimaginative. Now inside "Roku Detect Uncompliant Videos" create a sub folder called "Bin". Now extract the contents of FFMpeg's "Bin" folder into your new "Bin" sub folder. Now going back into "Roku Detect Uncompliant Videos" folder Right Click on it's background and select "New\AutoIt v3 Script" from the context menu, and Rename it "Roku Detect Uncompliant Videos.au3" Now Right Click "Roku Detect Uncompliant Videos.au3" & select "Edit Script" from the context menu. Now paste the following code into: #Include <Array.au3> #Include <File.au3> #Include <String.au3> Dim $aKnown[7] = [6 , '.mkv' , '.mp4' , '.mov' , '.m4v' , '.m3u8' , '.ts'] Dim $aUnknown[1] = [0] Dim $sErrorLog ; Select Video Folder While 1 $sFolder = FileSelectFolder( 'Select Video Folder.' , '' , 6 ) If @Error = 1 AND $sFolder = '' Then MsgBox( 4096 , 'Exit:' , 'Ending Application' ) Exit ElseIf $sFolder = '' Then MsgBox( 4096 , 'Error:' , 'Unable To Open Folder.' ) ElseIf NOT FileExists ( $sFolder ) Then MsgBox( 4096 , 'Error:' , 'Invalid Folder.' ) Else If StringRight( $sFolder , 1 ) <> '\' Then $sFolder &= '\' $aAllFiles = _FileListToArrayRec( $sFolder , '*.*|*.bif;*.db;*.jpg;*.nfo;*.png;*.tbn;*.xml;*.srt;*.sub;*.ssa;*.mp3' , 1 , 1 , 0 , 2 ) If NOT IsArray( $aAllFiles ) Then MsgBox( 4096 , 'Error:' , 'No Videos Found.' ) Else _ArraySort( $aAllFiles , 0 , 1 ) ExitLoop EndIf EndIf WEnd For $ii = 1 To $aAllFiles[0] _Macros( $aAllFiles[$ii] ) $iFind1 = _ArraySearch( $aKnown , $sFileExt , 1 ) If @Error Then $sErrorLog &= 'Unknown File Type:' & @CRLF & $aAllFiles[$ii] & @CRLF & @CRLF $iFind2 = _ArraySearch( $aUnknown , $sFileExt , 1 ) If @Error Then _ArrayAdd( $aUnknown , $sFileExt ) $aUnknown[0] += 1 EndIf Else ; Build Array of Streams $sRandomString = _RandomString() RunWait( @ComSpec & ' /c ffprobe -show_streams "' & $aAllFiles[$ii] & '">"' & @TempDir & '\' & $sRandomString & '.txt"' , @ScriptDir & '\BIN\' , @SW_HIDE ) $aAllStreams = _StringBetween( FileRead( @TempDir & '\' & $sRandomString & '.txt' ) , '[STREAM]' , '[/STREAM]' ) FileDelete( @TempDir & '\' & $sRandomString & '.txt' ) ; Find Video Streams $aFindVideoStreams = _ArrayFindAll( $aAllStreams , 'codec_type=video' , 0 , 0 , 0 , 1 ) If $aFindVideoStreams <> -1 Then ; Process Video Streams For $aa = 0 To UBound( $aFindVideoStreams ) - 1 $sSVideoCodec = _RegExString( $aAllStreams[$aFindVideoStreams[$aa]] , '(?s)(?i)(?:.+?codec_name=(\S+))?' ) If $sSVideoCodec <> 'h264' And $sSVideoCodec <> 'mpeg4' Then $sErrorLog &= 'Unsupported Video Codec: (' & $sSVideoCodec & ')' & @CRLF & $aAllFiles[$ii] & @CRLF & @CRLF ContinueLoop 2 EndIf Next Else $sErrorLog &= 'Missing Video Stream:' & @CRLF & $aAllFiles[$ii] & @CRLF & @CRLF ContinueLoop EndIf ; Find Audio Streams $aFindAudioStreams = _ArrayFindAll( $aAllStreams , 'codec_type=audio' , 0 , 0 , 0 , 1 ) If $aFindAudioStreams <> -1 Then ; Process Audio Streams For $aa = 0 To UBound( $aFindAudioStreams ) - 1 $sSAudioCodec = _RegExString( $aAllStreams[$aFindAudioStreams[$aa]] , '(?s)(?i)(?:.+?codec_name=(\S+))?' ) $iSAudioChannels = _RegExString( $aAllStreams[$aFindAudioStreams[$aa]] , '(?s)(?i)(?:.+?channels=(\S+))?' ) If $sSAudioCodec <> 'AAC' And $sSAudioCodec <> 'AC3' Then $sErrorLog &= 'Unsupported Audio Codec: (' & $sSAudioCodec & ')' & @CRLF & $aAllFiles[$ii] & @CRLF & @CRLF ContinueLoop 2 EndIf If $sSAudioCodec = 'AAC' And $iSAudioChannels > 2 Then $sErrorLog &= 'To Many Audio Channels: (' & $iSAudioChannels & ')' & @CRLF & $aAllFiles[$ii] & @CRLF & @CRLF ContinueLoop 2 EndIf Next Else $sErrorLog &= 'Missing Audio Stream:' & @CRLF & $aAllFiles[$ii] & @CRLF & @CRLF ContinueLoop EndIf EndIf Next ; Create Error Log If StringLen( $sErrorLog ) > 1 Then If NOT FileExists( @ScriptDir & '\Error Logs\' ) Then DirCreate( @ScriptDir & '\Error Logs\' ) $sErrorLogFile = @ScriptDir & '\Error Logs\[' & @YEAR & '-' & @MON & '-' & @MDAY & '] ' & @HOUR & '-' & @MIN & '-' & @SEC & '.txt' FileWrite( $sErrorLogFile , $sErrorLog ) ShellExecute( $sErrorLogFile ) EndIf ; Create Unknown File Extensions Text If $aUnknown[0] > 0 Then $sUknownExtensions = @ScriptDir & '\UnKnown.txt' If FileExists( $sUknownExtensions ) Then Dim $aPriorUnknown _FileReadToArray( $sUknownExtensions , $aPriorUnknown ) For $ii = 1 To $aPriorUnknown[0] $iFind2 = _ArraySearch( $aUnknown , $aPriorUnknown[$ii] , 1 ) If @Error Then _ArrayAdd( $aUnknown , $aPriorUnknown[$ii] ) $aUnknown[0] += 1 EndIf Next FileDelete( $sUknownExtensions ) EndIf _FileWriteFromArray( $sUknownExtensions , $aUnknown , 1 ) ShellExecute( $sUknownExtensions ) EndIf MsgBox( 0 , 'Finished' , 'Batch Operation Complete' ) Func _Macros( $sFile ) Global $sFileDir = StringLeft ( $sFile , StringInStr( $sFile , '\' , 0 , -1 ) ) Global $sFileExt = StringTrimLeft ( $sFile , StringInStr( $sFile , '.' , 0 , -1 ) - 1 ) Global $sFileName = StringTrimLeft ( $sFile , StringInStr( $sFile , '\' , 0 , -1 ) ) Global $sShortName = StringLeft ( $sFileName , StringInStr( $sFileName , '.' , 0 , -1 ) - 1 ) Global $sParent = StringLeft ( $sFileDir , StringInStr( $sFileDir , '\' , 0 , -2 ) ) Global $sFolderName = StringTrimRight( StringTrimLeft( $sFileDir , StringInStr( $sFileDir , '\' , 0 , -2 ) ) , 1 ) EndFunc Func _RandomString() $sString = '' Dim $aSpace[3] For $i = 1 To 15 $aSpace[0] = Chr( Random( 65 , 90 , 1 )) ; A-Z $aSpace[1] = Chr( Random( 97 , 122 , 1 )) ; a-z $aSpace[2] = Chr( Random( 48 , 57 , 1 )) ; 0-9 $sString &= $aSpace[Random( 0 , 2 , 1 )] Next Return $sString EndFunc Func _RegExString( $sString , $sRegEx ) Local $sValue = _ArrayToString( StringRegExp( $sString , $sRegEx , 1 )) If StringIsFloat( $sValue ) = 1 OR StringIsInt( $sValue ) = 1 Then Return Number( $sValue ) Else If $sValue = 'N/A' OR $sValue = 'N' OR $sValue = 'A' Then Return '' Else Return $sValue EndIf EndIf EndFunc Now save the script & execute it by double clicking it and then select the folder holding your videos that you wish to process. Now go do something else, this will take a while...maybe a great while depending on the number of videos you have. The script will notify you when it's done...and if you're curious as to if it's still running there should be a icon in your system tray that looks like a blue "A". Past that you can start your Task Manager and you should more than likely see FFMpeg running in the background. Result: This should possibly produce one or more text files. The primary one will be what is produced in the "Error Logs" folder, this will list what files failed and why...but keep in mind these only list the first reason why it failed, not all possible reasons it may have failed. A number of these may not even be video files at all...but a format that should have been excluded from the search. Which brings me to the next file "UnKnown.txt" this file will be updated with one instance per unknown file extension, possibly every time you run the script and it finds something new. Now ideally I have all or at least most common non video extensions excluded from the search...this is everything on the right side of the pipe "|" symbol on line 21 at present. You may wish to add new extensions to be excluded from future searches...thus speeding the script along...but please consider sharing your additional excludes here in this thread, to help others out as well. What Next: You may wish to use one of my app's, called VideoGain (free) to process the failed video files. It's main purpose is to batch adjust audio volume, so that all the videos have more or less the same gain...so you don't have to monkey around with your volume all the time. Originally it only processed folders full of videos...not individual, but since I was already making some corrections to it already...I set it up to do single files as well. Here is where we get hackish. Download VideoGain & extract it somewhere...ideally in a folder called VideoGain so it's easier to find later on. Now Start it by double clicking on it's exe...then close the app...it will now have produced a new INI file...and we are going to edit it's contents with whatever your favorite text editor happens to be (Notepad, Notepad++, UltraEdit,..). In the VideoGain.ini all the way at the bottom...you should see an entry called "[Folders]". Now below that we'll be adding entries of our own...basically copy and paste from your Error Logs...into this file...but before each path put "Folder_#=" replacing the # with a number value...please keep each value different, and each entry on a new line. I'll likely write a simple script to help in this matter tomorrow. Anyways once all the edits are made...save the file, and restart VideoGain. You should now see all the files you want to process listed on the "Folders" tab. Now check "Direct Replace" and uncheck "Recurse Folders" (not needed). Now click on the "Settings" tab. If you had any videos that failed because they were not H264 then set the Encoder to "Conditional" which basically means if VideoGain doesn't detect the video stream to be H264..to then encode..but only then. Make further adjustments as you like to the H264 settings and Video settings. Now if you had Audio errors, you have a few picks...you can go with AAC or AC3...encoders...with the covet that AAC is limited to stereo. Right now if you select AC3...all videos will have the audio track re-encoded, bar non...I don't have an early out for that right now as I just added AC3 support...however if you select AAC and a number of your tracks are already AAC...and those tracks are Stereo...then you can select "ReplayGain (Tags)" this will do a non damaging adjustment to the AAC tracks...however all non AAC tracks will be encoded to AAC. Select "Stereo DownMix" if you plan to use AAC. All resulting files will ether be Mp4 or Mkv depending on what you selected for a container, from the drop down at the bottom of the application. Press "Start" and away you go. I would personally suggest doing at little processing as you need to. Each time something gets encoded...it gets more damaged.
  6. With the recent Emby Theater update, my video does not start in full screen. I think it has something to do with multiple monitors, because it will go to full screen if I move it to the other monitor. However, both monitors are at the same resolution, 1920x1080. After I move it to the monitor that fixes it, I can move it back to the proper monitor and it stays full screen.
  7. Blue Kachina

    Camera Upload - Video Files?

    Hey all; Does anyone know if it's possible to enable the upload of video files from the camera upload feature? Mine seems to be grabbing images, and I'm amazed at how fast it's working, but video files get left behind.
  8. SmokenOaken

    Google Cardboard

    I've been using google cardboard a lot as of late to watch my media via my Note 4 in Virtual Reality 3d. There are some decent apps for this, but none so far from what I can see with the ability to stream media to my phone. My favorite app the 3d application so far is Full Dive. Has there been any thought to build native support in to the Android Media Browser app to view streaming media browser content and 3D movies to a smart device in a sort of Virtual Cinema view. I think this would be a great addition to this already amazing product.
  9. Playlist - Highlight easily visible in the playlist the video currently in play
  10. Hi I downloaded and install Emby Beta 3.0.5713.6 on my Windows 8.1 Pro x64 and i'm having the folowing issues: 1) When using Emby for android 2.4.8 (latest) when try to stream video to my device, the video keeps loading forever and don't play and I had to restart my phone and in my PC the ffmpeg.exe keeps runing using high memory rate until I restart Emby Srver. 2) So I downgrade to Emby 3.0.5675.1 and the video stream are ok, but when I try to play musics, the Emby for Android play wrong musics, i.e., I choose one music and Emby for Android play another music, and if I choose other music, Emby for Android start to paly the previous wrong music. The only combination that works fine is Emby 3.0.5675.1 and Emby for Android 2.3.98. Less bad that I had saved earlier versions of Emby for Android, otherwise I could no longer use Emby on my Android. I hope that before making this official version of Emby Beta, you really test the Emby Server with Emby for Android, because once published the official version can not go back Thanks for your attention.
  11. nickola2

    Gestion des fichiers

    Bonjour tout le monde ! J'ai une question : Nouvel exploitant d'Emby serveur, je me suis amusé sur un debian v8 à configurer et installer mon propre serveur torrent (pour les vidéos de vacances que je partage avec ma grand-mère évidement), auquel j'ai installé le serveur média Emby. Alors tous est niquel, Emby fonctionne parfaitement et tout est bien dans le meilleur des mondes. Mais j'ai quand même un truc qui me dérange à la longue. Chaque fois que je télécharge un fichier qui n'est pas une vidéo, j'ai celui-ci qui se retrouve dans ma liste de média (vu que j'ai indiqué à Emby, comme vous l'avez également fait, de regarder la ou se trouve mes torrents) apparaît comme étant un film (alors que ça n'a rien a voir avec un film...). Et mon père a qui j'ai configuré un accès à mon serveur Emby, comment dire... ne fera pas la différence dans la liste entre le super film de vacances en famille et l'iso de debian que je viens de télécharger, par exemple et de ce fait va essayer d’ouvrir ce dernier pour le regarder (oui je sais, pas facile de coupler la famille et l'informatique). Donc ma question : Quelqu'un sait comment dire à Emby d'afficher et traiter uniquement les formats vidéo qu'il trouve sur le serveur et laisser de côté tout autre format ? Vous seriez au top si vous m'apportez cette réponse Et je dispose d'un abonnement premium Emby si jamais c'est lié. Merci chère communauté et je reste très actif sur vos éventuelles réponses !
  12. I have never been able to get Emby Theater (software not Win store app)to play on my desktop. It has 3 monitor setup. I hadn't gotten around to making a post about it. Emby theater will just play audio of live tv, but just show a black screen. Same black screen with audio plays with local H264 files. When i try to playback my live TV recordings (mpeg2) it just loads it for a sec(black screen) then stops going back to the video description page. Doesn't matter what monitor I load it up on. No change if I toggle the Video rendered form Madvr to EVR etc. I disable my 2 other monitors via the Nvidia control panel and only use my primary monitor, Emby Theater plays all media fine. Currently using Emby Theater 2.5.40. But this issue I noted even back when it first came out. I did it on my GTX 970 and still does it on my GTX 1080. Nvidia drivers made no differance but are current. Still using the same monitors. Windows 10. Not sure on how to get any logs or more info from the software itself. Nothing seems to be reported on the server or transcode logs on the server itself that would indicate an issue. They look the same each time i test it, multi monitor enabled or not.
  13. Hi there, I'm having a problem trying to play videos on my Android tablet using Chrome. My (older) Android phone plays them fine using the same browser. When I try to play a video, I can only see the fanart and the video window never appears. I'm attaching my server log and ffmpeg log, I hope I'm doing this correctly but let me know if you need any more information. ffmpeglog.txt serverlog.txt
  14. What this solves: 1. On demand creating Roku Bif files recursively through sub folders, using Emby Servers naming scheme. (Simple Dialog Interface, Command Line and SendTo {must be compiled}). 2. Scheduled Bif file creation, 3. Allow networked computers to work on shared folders to speed things along. Only limiting factors are the speed of your network & the number of systems connected. Notes: The Folders this script is to run against must be on ether a local or network mapped drive, as the script isn't setup to handle UNC paths. Also checkout the concurrent version further down in the thread. Requirements: AutoIt FFMpeg Roku SDK Instructions: Install AutoIt and set it to execute scripts when double clicked. Create a folder somewhere...lets call it "Creat BIF" just to be unimaginative. Now inside "Create BIF" create a sub folder called "Bin". Now extract the contents of FFMpeg's "Bin" folder into your new "Bin" sub folder. Now extract "biftool.exe" from the Roku SDK into your new "Bin" sub folder. Now going back into "Create BIF" folder Right Click on it's background and select "New\AutoIt v3 Script" from the context menu, and Rename it "Create BIF.au3" Now Right Click "Create BIF.au3" & select "Edit Script" from the context menu. Now paste the following code into: Now save the script & execute it by double clicking it and then select the folder holding your videos that you wish to process. Now go do something else, this will take a while...maybe a great while depending on the number of videos you have. The script will notify you when it's done...and if you're currious as to if it's still running there should be a icon in your system tray that looks like a blue "A". Past that you can start your Task Manager and you should more than likely see FFMpeg running in the background. By default this will create 320px aspect correct BIF files, if you wish to create 240px or any other size you'll need to edit line 7. Example: from $iVideoWidthSize = 320 to $iVideoWidthSize = 240 Update 1: I decided to let FFMpeg do all the calculations for resize...which result in a massive code reduction. Update 2: Added passing folders via command line. This is mostly aimed at adding SendTo context menu support. 1. Right Click on "Create BIF.au3" and select "Compile Script (x86)" from the context menu 2. ALT + Left Click on "Create BIF.exe" and Drag to create a shortcut...rename to remove ".exe" from the file name 3. Cut & Paste shortcut to your SendTo folder: %APPDATA%\Microsoft\Windows\SendTo\ Now you don't even need to hunt down the script when you need it. Update 3: Added very simplistic scheduling based on a 24 hour clock. Currently you can not start on one day and end on the following. Only one time block allowed per day. The script now produces an INI that can be edited "Create Bif.ini" If you choose to use the scheduling the script needs to be compiled. Once compiled & the INI edited to your liking, open up a console in the script folder. Then enter: "Create Bif.exe" ScheduleNew Now new tasks have been created in the Windows Task Scheduler. To remove tasks enter: "Create Bif.exe" ScheduleDelete To not have a task scheduled for a day, set the start time and end time to be the same. Update 4: Command Line now supports both Folders & Files...thus making a SendTo shortcut more useful. Update 5: Added auto SendTo shortcut creation...only happens if script is compiled. To trigger this...simply use the executable once...you don't even have to actually process a file. If you don't want this feature simply delete the code on and between lines 17 & 25 (currently) Update 6: Now allows only one instance to run at a time, to prevent bogging down your system. This applies to Command Line and GUI, but not Task Scheduler...as the Task Scheduler should only have one instance anyways. This allows you to cue up several folders\files to be processed, even though they are in very different locations. Update 7: Made it easier for the script to clean up after it's self.
  15. rafinha

    there was an error playing the video

    Hi guys, Recently I'm getting some issues with some mkv and also with some avi files. http://www.lalala.com:8096/emby/videos/cc2c06a5a89684b65b2bb537830d8281/hls1/main/0.ts?DeviceId=04e623de3cccde817a76b811b2e7c1cec7d245c8&MediaSourceId=cc2c06a5a89684b65b2bb537830d8281&VideoCodec=h264&AudioCodec=aac&AudioStreamIndex=1&VideoBitrate=9776000&AudioBitrate=224000&Level=51&Profile=high&PlaySessionId=25b4a9cc19c74163918288ccfbebaf1b&api_key=5b2368b0e14841a089204cf3617b61a0&CopyTimestamps=false&TranscodingMaxAudioChannels=6&EnableSubtitlesInManifest=false&Tag=54a77eae154a2423713fef8d9fd3d2f3&RequireAvc=true {"Protocol":"File","Id":"cc2c06a5a89684b65b2bb537830d8281","Path":"/var/lib/emby-server/encfs/Movies/The Accountant (2016).mkv","Type":"Default","Container":"mkv","Name":"1080P/H264/AC3","ETag":"54a77eae154a2423713fef8d9fd3d2f3","RunTimeTicks":76742623232,"ReadAtNativeFramerate":false,"SupportsTranscoding":true,"SupportsDirectStream":true,"SupportsDirectPlay":true,"IsInfiniteStream":false,"RequiresOpening":false,"RequiresClosing":false,"SupportsProbing":true,"VideoType":"VideoFile","MediaStreams":[{"Codec":"h264","TimeBase":"1/1000","CodecTimeBase":"583/27956","NalLengthSize":"4","IsInterlaced":false,"IsAVC":true,"BitRate":2399974,"BitDepth":8,"RefFrames":4,"IsDefault":true,"IsForced":false,"Height":800,"Width":1904,"AverageFrameRate":23.97599,"RealFrameRate":23.97599,"Profile":"High","Type":"Video","AspectRatio":"2.40:1","Index":0,"IsExternal":false,"IsTextSubtitleStream":false,"SupportsExternalStream":false,"PixelFormat":"yuv420p","Level":41,"IsAnamorphic":false},{"Codec":"ac3","Language":"por","TimeBase":"1/1000","CodecTimeBase":"1/48000","Title":"AC3 - 5.1 By: lalala","DisplayTitle":"Por AC3 - 5.1 By: lalala","IsInterlaced":false,"ChannelLayout":"5.1","BitRate":224000,"Channels":6,"SampleRate":48000,"IsDefault":true,"IsForced":true,"Type":"Audio","Index":1,"IsExternal":false,"IsTextSubtitleStream":false,"SupportsExternalStream":false,"Level":0,"IsAnamorphic":false},{"Codec":"aac","Language":"eng","TimeBase":"1/1000","CodecTimeBase":"1/48000","Title":"AAC - 2.0 By: lalala","DisplayTitle":"Eng AAC - 2.0 By: lalala","IsInterlaced":false,"ChannelLayout":"stereo","Channels":2,"SampleRate":48000,"IsDefault":false,"IsForced":false,"Profile":"LC","Type":"Audio","Index":2,"IsExternal":false,"IsTextSubtitleStream":false,"SupportsExternalStream":false,"Level":0,"IsAnamorphic":false},{"Codec":"srt","DisplayTitle":"","IsInterlaced":false,"IsDefault":false,"IsForced":false,"Type":"Subtitle","Index":3,"IsExternal":true,"IsTextSubtitleStream":true,"SupportsExternalStream":true,"Path":"/var/lib/emby-server/encfs/Movies/The Accountant (2016).srt","IsAnamorphic":true}],"PlayableStreamFileNames":[],"Formats":[],"Bitrate":2623974,"RequiredHttpHeaders":{}} /usr/bin/ffmpeg -i file:"/var/lib/emby-server/encfs/Movies/The Accountant (2016).mkv" -map_metadata -1 -map_chapters -1 -threads 0 -map 0:0 -map 0:1 -map -0:s -codec:v:0 copy -bsf:v h264_mp4toannexb -flags -global_header -copyts -codec:a:0 aac -strict experimental -ac 6 -ab 224000 -af "adelay=1,aresample=async=1" -max_delay 5000000 -avoid_negative_ts disabled -start_at_zero -hls_time 6 -start_number 0 -hls_list_size 0 -y "/var/lib/emby-server/transcoding-temp/22308946ced9c9595115b55989744116.m3u8" ffmpeg version 2.8.10-0ubuntu0.16.04.1 Copyright (c) 2000-2016 the FFmpeg developers built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.4) 20160609 configuration: --prefix=/usr --extra-version=0ubuntu0.16.04.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --cc=cc --cxx=g++ --enable-gpl --enable-shared --disable-stripping --disable-decoder=libopenjpeg --disable-decoder=libschroedinger --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzvbi --enable-openal --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-frei0r --enable-libx264 --enable-libopencv WARNING: library configuration mismatch avcodec configuration: --prefix=/usr --extra-version=0ubuntu0.16.04.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --cc=cc --cxx=g++ --enable-gpl --enable-shared --disable-stripping --disable-decoder=libopenjpeg --disable-decoder=libschroedinger --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzvbi --enable-openal --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-frei0r --enable-libx264 --enable-libopencv --enable-version3 --disable-doc --disable-programs --disable-avdevice --disable-avfilter --disable-avformat --disable-avresample --disable-postproc --disable-swscale --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libvo_aacenc --enable-libvo_amrwbenc libavutil 54. 31.100 / 54. 31.100 libavcodec 56. 60.100 / 56. 60.100 libavformat 56. 40.101 / 56. 40.101 libavdevice 56. 4.100 / 56. 4.100 libavfilter 5. 40.101 / 5. 40.101 libavresample 2. 1. 0 / 2. 1. 0 libswscale 3. 1.101 / 3. 1.101 libswresample 1. 2.101 / 1. 2.101 libpostproc 53. 3.100 / 53. 3.100 Input #0, matroska,webm, from 'file:/var/lib/emby-server/encfs/Movies/The Accountant (2016).mkv': Metadata: title : By: lalala encoder : libebml v1.2.3 + libmatroska v1.3.0 creation_time : 2016-12-25 00:00:54 Duration: 02:07:54.26, start: 0.000000, bitrate: 2399 kb/s Stream #0:0: Video: h264 (High), yuv420p, 1904x800 [SAR 1:1 DAR 119:50], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default) Stream #0:1(por): Audio: ac3, 48000 Hz, 5.1(side), fltp, 224 kb/s (default) (forced) Metadata: title : AC3 - 5.1 By: lalala Stream #0:2(eng): Audio: aac (LC), 48000 Hz, stereo, fltp Metadata: title : AAC - 2.0 By: lalala Output #0, hls, to '/var/lib/emby-server/transcoding-temp/22308946ced9c9595115b55989744116.m3u8': Metadata: encoder : Lavf56.40.101 Stream #0:0: Video: h264, yuv420p, 1904x800 [SAR 1:1 DAR 119:50], q=2-31, 23.98 fps, 23.98 tbr, 90k tbn, 23.98 tbc (default) Stream #0:1: Audio: aac, 48000 Hz, 5.1, fltp, 224 kb/s (default) (forced) Metadata: encoder : Lavc56.60.100 aac Stream mapping: Stream #0:0 -> #0:0 (copy) Stream #0:1 -> #0:1 (ac3 (native) -> aac (native)) Press [q] to stop, [?] for help frame= 207 fps=0.0 q=-1.0 size=N/A time=00:00:08.74 bitrate=N/A frame= 469 fps=468 q=-1.0 size=N/A time=00:00:19.75 bitrate=N/A frame= 772 fps=513 q=-1.0 size=N/A time=00:00:32.34 bitrate=N/A frame= 1064 fps=530 q=-1.0 size=N/A time=00:00:44.58 bitrate=N/A frame= 1318 fps=526 q=-1.0 size=N/A time=00:00:55.12 bitrate=N/A frame= 1573 fps=523 q=-1.0 size=N/A time=00:01:05.68 bitrate=N/A frame= 1852 fps=528 q=-1.0 size=N/A time=00:01:17.41 bitrate=N/A frame= 2082 fps=519 q=-1.0 size=N/A time=00:01:26.89 bitrate=N/A frame= 2280 fps=505 q=-1.0 size=N/A time=00:01:35.14 bitrate=N/A frame= 2545 fps=508 q=-1.0 size=N/A time=00:01:46.21 bitrate=N/A frame= 2831 fps=514 q=-1.0 size=N/A time=00:01:58.10 bitrate=N/A frame= 3100 fps=516 q=-1.0 size=N/A time=00:02:09.30 bitrate=N/A Here is my log, not sure what is the problem. Anybody can help me? Thanks
  16. rptpeeters

    Video-afbeeldingen op tv niet zichtbaar

    Na een herinstallatie van Emby (v. 3.0.5985.0) op mijn QNAP Nas worden de videofiles niet meer als afbeelding weergegeven (voorheen dus wel) op mijn (LG smart) TV. Onder de instelling 'Metagevens' staat aangevinkt dat afbeeldingen gedownload en opgeslagen moeten worden ( dat werkt). Onder op de optie diensten (Metagegevens) staat aangevinkt dat de afbeeldingen moeten worden opgehaald: 'primair', 'logo' en 'miniatuur' Onder DLNA settings heb ik onder het profiel van mijn LG smart-tv aangevinkt dat 'album hoezen' moeten worden ingesloten. Waarom worden de afbeelding niet weergegeven? Wat zie ik over het hoofd??
  17. Feature Request - EMBY Server- Reports - ability to sort by Video/Audio/Genre/Resolution Columns Currently you cannot sort the reports in Emby Server by Video, Audio, Resolution or Genre. Please add this feature.
  18. So, last night the server crashed again. It got me the errorbox of an exception failure. (I had people who wanted to access their account and was to stupid to take a screenshot). Anyhow, I have logs, 56mb, so i uploaded the biggest one, the other ones you can find attached to this post. https://www.dropbox.com/s/gbhcvidq3ovm4e4/server-63605433600.txt?dl=0 The unhandled log seems to be the one showing the crash, then again, I'm a master of content, not bugfinding I don't seem to find a log on the Event Viewer about .net or anything similar that happened around the time of the crash. This started around the 3.0.5986 update, every night the server restarts and it never restarted a few times. If it would happen every time, I would be annoyed, but in this case, it happens randomly. Need any other info? Server: Windows Server 2012 R2 Essentials 64-bit 2x Intel Xeon E5 2650 @ 2.00GHz watercooled 32.0GB DDR3 @ 666MHz (9-9-9-24) ASRock EP2C602 223GB Corsair Force GS (SSD) Emby v 3.1.81.0 (Beta) Plugins: Auto Box Sets, Folder Sync, IPTV, Server Configuration Backup, Server Restart and Statistics ​Thank you very much to get back to me! You guys made an epic piece of software!!! -PV server-63605475211.txt unhandled_7af7adc8-9dfc-45d8-b239-c275bc7a6565.txt
  19. Xzener

    Videos Dont Play

    Luke, Videos do not play if logging into Web Client, or ET web version (tv.emby.media) via external IP address. This issue just recently popped up since installing v3.0.6000. I only use external IP at work, so I just found this out. Theme songs work fine, but if I press play, or resume... nothing happens. Will send you a log via PM. Hope you can find the issue, watching YouTube sucks!
  20. sanjaydevani

    Family Photo and Video

    Hi, Developers can you guys think about that add google photos interface in emby Family Photo & Videos its very nice app can save photos in computer and its magical managed and organised our photos and videos also its download our computer mean synchronize and view like Google photos app, if you dont know about it check on YouTube. you gonna love this app
  21. If I'm watching a video and pause it for more than a minute, when I try to resume it the audio restarts but the video never resumes. The only way I can get video working again is to stop the video and fast forward to the point where I paused it. The server is a dual proc Xeon X5660 @ 2.80GHz with 96GB RAM on a RAID 6 array, so I don't think it's a resource issue. The client is an Nvidia Shield. My only guess is that there is something going on with trans-coding on the server end. From what I can tell unfortunately everything is being transcoded on the server end despite the fact that the shield can handle it. How can I troubleshoot this issue or what info can I provide to obtain assistance?
  22. FreedomRydr

    Roku Media Selection

    Hi. New to Emby. I installed this server controller so I could view my media, Photos, Videos and Music. In setting up media locations, I only find ability to load single files not folders and subfolders. I have thousands, no, tens of thousands of photos, videos and music albums. How do I set it up so it will read entire parent folders, rather than having to add one file at a time? It would take literally months of adding one file at a time for every photo, song, or video file. Other apps allow folders, and reads all content in sub folders below it but I do not find this option in the dashboard. Anyone know if this can be done? Otherwise this setup was all in vain! Thanks ~FR
  23. Hi, I just purchased the Windows Phone emby app (great work by the way) and noticed a thing that is just a little annoying... The back, home and search "on screen" buttons can't be swiped off the screen... which makes watching videos really uncomfortable. Here's a screenshot of the problem. I know that not every app offers this possibility -which might be quite new considering the recent disappearance of the hardware buttons- but it's a really nice feature when it comes to video playback Details : Lumia 950 W10 version 10.0.10586.63 Emby App version 8.0.67.2 Emby Server version 3.0.5724.6 Hoping to see this coming in a future update... Thanks !
  24. HPBirkeland

    Can not play video in Kodi (and a bit more)

    I have a setup with a pc running Emby media server and all my media (movies, tv shows and music videos are relevant for this question) on the local hard drive, and a laptop with Kodi and the Emby for Kodi addon. All video files are coded in H264. I have set up path substitution for all main folders like this: From To /home/hpb/Videoklipp/Filmer //Programbank/Videoklipp/Filmer The machine name is Programbank. When I use the Emby web interface on the laptop everything works as expected, but I have some issues in Kodi. Of all my 29 movies, Kodi will only play one. It will not play any music videos or any of the few TV episodes it sees. All music plays fine. A while after I have tried to play the following message pops up: --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- One or more items failed to play. Check the log for more information about this message. --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- I have a log file from a session where I do the following steps: -Start Kodi -Try to play a music video (ABBA - Fernando) -Try to play a movie (About A Boy) -Play the only movie that will play (Flåklypa Grand Prix) -Try to play a TV show episode (The Thorn Birds ep 1) -Exit Kodi Log file: http://pastebin.com/Zqt2BnwK Does anybody understand what is wrong here and how I can fix it? I have searched the forum for solutions and have found several similiar threads, but none with my exact problem and none of the suggestions have helped me. Also, about TV shows. It seems like Kodi can't see episodes that are in season folders. Can this be right? According to the wiki I should be able to use season folders: http://kodi.wiki/view/Naming_video_files/TV_shows
  25. I'm having a bug with video stopping after the first video ends in a playlist. When the first video ends it pops out of the video screen and back to the list of videos, it seems like the video keeps playing but only audio is working so I'm not sure what's going on. I am choosing the play all option so its not that I have only clicked on the first video. Is anyone else getting this problem?
×
×
  • Create New...