
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (105)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (11722)
-
Through 1 someone through ffmpeg I need to combine 2 audio and add a picture (album) to it
21 avril 2021, par DarkShadeThrough 1 whom through ffmpeg
I need to combine 2 audio and add a picture (album) to it


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



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


I looked at this link and it combined 2 audios.
Now I need to add a picture (album) to it



Here is the command that is using me


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



Thanks to this, I was able to combine two audios into one.


I saw it this way


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 - first audio (1:35 s)
2.mp3 - second audio (0:16 s)
1.png - picture (album) (170x170)



I got this error


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



What I need ?


I need to add picture (album) to audio combined with this command


When I say picture (album), I mean exactly that.
This is clearly shown in the picture.
https://i.imgur.com/z64KhoS.png


-
через 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


-
avformat/wavdec : Fix reading files with id3v2 apic before fmt tag
16 avril 2021, par Andreas Rheinhardtavformat/wavdec : Fix reading files with id3v2 apic before fmt tag
Up until now the cover images will get the stream index 0 in this case,
violating the hardcoded assumption that this is the index of the audio
stream. Fix this by creating the audio stream first ; this is also in
line with the expectations of ff_pcm_read_seek() and
ff_spdif_read_packet(). It also simplifies the code to parse the fmt and
xma2 tags.Fixes #8540 ; regression since f5aad350d3695b5b16e7d135154a4c61e4dce9d8.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>