
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (26)
-
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 (4043)
-
ffmpeg comressed mp4 video is not playing on mozila file currupt error
17 avril 2017, par user2519007I have compressed mp4 video using ffmpeg in php environment. Videos are being compressed but these are not playing in firefox showing error :
Video can’t be played because the file is corrupt
while this video is playing fine in VLC media player also in chrome browser. My code of comression is as-
exec("ffmpeg -i input.mp4 -acodec mp2 output.mp4");
-
concat 2 mini audio files and make a loop and add a background music
11 octobre 2020, par Johny SharmaI Need to concatenate 2 small audio files with loop and add background music in a single command.



I am capable to concatenate two audio files with a background music. My above given code is working.



ffmpeg -i 1.mp3 -i 2.mp3 -i background.mp3 
-filter_complex "[0:0][1:0]concat=n=2:v=0:a=1,volume=1dB,aformat=fltp, pan=stereo|c0=c0|c1=c0[a0]; 
[2]volume=0.5dB,aformat=fltp,pan=stereo|c0=c0|c1=c1[a1];[a0][a1]amix=inputs=2:duration=longest,aformat=fltp[a]"
-map "[a]" -strict -2 -y output.mp3




but i want to a make a loop of the concatenated files till the end of the background music. background music is longer than approx 5 times from concatenated files.



If someone can suggest a single command solution.



I know about amovie tag but unfortunately its not possible to use in here because amovie requires file name which is not possible with concatenated files as per my knowledge.



Can anyone help me how can i achieve my goal !



Thanks


-
ffmpeg : hstack playing one at a time ?
5 juin 2018, par MarcI tried this command which merge videos horizontally but 2 videos are playing together at the same time.
ffmpeg\bin\ffmpeg.exe -i video1.mp4 -i video2.mp4 -filter_complex "[0:v[1:v]hstack[v];[0:a][1:a]amerge=inputs=2[a]" -map "[v]" -map "[a]" -ac 2 out.mp4
How to make them play one at a time ?