
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (8429)
-
через 1 кому через ffmpeg Мне нужно объединить 2 аудио и добавить к нему картинку (альбом) [closed]
20 avril 2021, par DarkShadeчерез 1 кому через ffmpeg
Мне нужно объединить 2 аудио и добавить к нему картинку (альбом)


<---------> 1-audio
 <--------------> 2-audio
<-------------------> output



https://superuser.com/questions/1509582/ffmpeg-merge-two-audio-file-with-defined-overlapping-time


Я посмотрел по этой ссылке, и она объединила 2 аудио.
Теперь мне нужно добавить к нему картинку (альбом)



Вот команда, которая меня использует


ffmpeg -i 1.mp3 -i 2.mp3 -filter_complex "[1]adelay=Ns|Ns[a1];[0:a][a1]amix=inputs=2[a]" -map "[a]" output.mp3



Благодаря этому я смог объединить два аудио в один


Я видел это таким образом


ffmpeg -i 1.mp3 -i 2.mp3 -i 1.png -filter_complex "[1]adelay=5s|5s[a1];[0:a][a1]amix=inputs=2[a]" -map "[a]" -c:a copy -c:v copy -map 0:0 -map 1:0 -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (front)" audio-out.mp3



1.mp3 - первое аудио (1:35 s)
2.mp3 - вторичное аудио (0:16 s)
1.png - картинка (альбом) (170x170)



Я получил эту ошибку


Streamcopy requested for output stream 0:0, which is fed from a complex filtergraph. Filtering and streamcopy cannot be used together.



Что мне нужно ?


Мне нужно добавить картинку (альбом) к аудио в сочетании с этой командой


Когда я говорю картинку (альбом), я имею в виду именно это.
Это наглядно показано на картинке
https://i.imgur.com/z64KhoS.png


-
Revision 37011 : Un petit test pour voir si ffmpeg2theora est dispo sur le serveur (pour ...
6 avril 2010, par kent1@… — LogUn petit test pour voir si ffmpeg2theora est dispo sur le serveur (pour l’utiliser au cas où plus tard)
-
avformat/matroskaenc : Check for failure when writing SeekHead
29 décembre 2019, par Andreas Rheinhardtavformat/matroskaenc : Check for failure when writing SeekHead
mkv_write_seekhead() would up until now try to seek to the position where
the SeekHead ought to be written, write the SeekHead and seek back. The
first of these seeks was checked as was writing, yet the seek back was
unchecked. Moreover the return value of mkv_write_seekhead() was unchecked
(the ordinary return value was the position where the SeekHead was written).This commit changes this : Everything is checked. In the unseekable case
(where the first seek may nevertheless work when it happens in the buffer)
a failure at the first seek is not considered an error. In any case,
failure to seek back is an error.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>