Wie kann ich mit FFmpeg das Albumcover festlegen, wenn ich eine .opus-Datei habe?


1

Wie kann ich mit FFmpeg das Albumcover festlegen, wenn ich eine .opus-Datei habe?

Ich hatte Erfolg mit:

ffmpeg -i Pogo.mp3 -i StellarDrone.png -map 0:0 -map 1:0 -codec copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (front)" out.mp3

Verwenden Pogo.mp3 und Stellardrone.png als Testdateien. Das funktioniert nicht für .opus anscheinend aber.

ffmpeg -i Hotlines.opus -i StellarDrone.png -map 0:0 -map 1:0 -codec copy -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (front)" out.opus
ffmpeg version 4.0 Copyright (c) 2000-2018 the FFmpeg developers
  built with gcc 7 (Ubuntu 7.3.0-16ubuntu3)
  configuration: 
  libavutil      56. 14.100 / 56. 14.100
  libavcodec     58. 18.100 / 58. 18.100
  libavformat    58. 12.100 / 58. 12.100
  libavdevice    58.  3.100 / 58.  3.100
  libavfilter     7. 16.100 /  7. 16.100
  libswscale      5.  1.100 /  5.  1.100
  libswresample   3.  1.100 /  3.  1.100
Input #0, ogg, from 'Hotlines.opus':
  Duration: 00:04:01.00, start: -0.960000, bitrate: 359 kb/s
    Stream #0:0: Audio: opus, 48000 Hz, stereo, fltp
    Metadata:
      ARTIST          : ChrisKeya
      FMPS_PLAYCOUNT  : 0
      FMPS_RATING_AMAROK_SCORE: 0.04
      TITLE           : Hotlines
    Stream #0:1: Video: png, rgb24(pc), 1280x720 [SAR 1:1 DAR 16:9], 90k tbr, 90k tbn, 90k tbc
    Metadata:
      comment         : Cover (front)
      title           : ChrisKeya - LateNight [Full EP].png
Input #1, png_pipe, from 'StellarDrone.png':
  Duration: N/A, bitrate: N/A
    Stream #1:0: Video: png, rgb24(pc), 1280x720 [SAR 1:1 DAR 16:9], 25 tbr, 25 tbn, 25 tbc
[opus @ 0x55a1a7d72100] Unsupported codec id in stream 1
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
  Stream #1:0 -> #0:1 (copy)
    Last message repeated 1 times

Von besonderem Interesse ist der rote Abschnitt:

[opus @ 0x55af9c499100] Unsupported codec id in stream 1
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument

Nicht implementiert.
Gyan

@ Gyan Bist du sicher?
Sarah Szabo

Ja, das wurde mehrmals gefragt.
Gyan

@ Gyan können Sie eine Quelle geben?
Gruber

Sehen trac.ffmpeg.org/ticket/4448 - Der verlinkte Patch implementiert ihn nur für .flac aber flac und opus Muxer sind Subtypen des Ogg-Muxers.
Gyan
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.