-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-ffopts syntax potential issue #111
Comments
Well, I was wrong it was just my imagination idk xd |
Can you describe what you're trying to do? |
Something quite important for me but for a different reason to answer your question Phil, From looking at his examples, it looks like he wants to use hacktv to play his videos with nvenc (gpu encoding). So basically, he is asking if a command like "--ffopts "c:v=h264_nvenc" would work or not. For me, this would be helpful with my analogue capture card! If I use --ffmt v4l2 with --ffopts "framerate=25" I get no sound. So I have to combine the video and audio from v4l2 with pulseaudio to mkv, avi or mpegts by piping and messing around just to get sound from my capture card to hacktv. So for me, I would honestly too would like to know if hacktv's --ffopts feature would support or work with |
That'll be a no then. |
*If I'm talking nonsense, then I apologize, but I'm not that proficient in these matters.*
The
--ffopts
option requires writing subsequent options and values in the form of [option1]=[value1]: [option2]=[value2], etc...The problem is that (I may be wrong, I don't know how to check) I have the impression that when I choose options like
c:v=h264_nvenc
, the program thinks rather about-c -v h264_nvenc
than about-c:v h264_nvenc
.Similarly with '=', if a value contains an equal sign, it might not work correctly.
How should I deal with this? Does the code anticipate such a situation?
Should I write these commands, for example, like
"c:v"=h264_nvenc
orc\:v=h264_nvenc
?I'm sorry I didn't look at the code, but I'm at a level of understanding code where I could actually figure it out, but it would take a lot of time, and if I found a problem and fixed it, I definitely wouldn't compile it myself just to see how it works, because I only have Windows (I tried and installing libraries was a torment for me and I couldn't get out of it), alternatively I would use Tails Linux from a USB, although it would still be quite difficult. Thanks in advance for your help!
The text was updated successfully, but these errors were encountered: