
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (72)
-
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 ) (...) -
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 (...) -
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 (...)
Sur d’autres sites (10163)
-
FFMPEG, last message repeated 1 times
30 octobre 2023, par byeolkidef play_queue(self, id:str, title:str):
 music_data = Music_Data(self.inter.guild)
 FFMPEG_OPTIONS = {'options': '-vn'}
 ydl_opts = {'format': 'bestaudio'}
 if not music_data.check_guild() or not music_data.is_playing():
 with yt_dlp.YoutubeDL(ydl_opts) as ydl:
 info = ydl.extract_info(f'https://www.youtube.com/watch?v={id}', download=False)
 URL = info['url']
 music_data.start_music(id, title, self.inter, self.voice_channel)
 self.voice_client.play(source=nextcord.FFmpegPCMAudio(URL, **FFMPEG_OPTIONS), after=lambda e: asyncio.run_coroutine_threadsafe(self.next_play(), self.client.loop))
 return True
 else:
 music_data.add_queue(id, title, self.inter)
 return False



It's My source
my module : yt-dlp


It originally worked well.
How fix ?


-
ffmpeg multiple overlays at different times
14 octobre 2017, par TheOctagonI have written a bash script which cycles through various RTMP live streams and switches every thirty seconds.
I have a PNG sequence which plays at the start of the video (blindRev-%d.png). A blind is pulled up, revealing the stream.28 seconds later, I would like it to come back down to cover the stream so that when the next stream is loaded, it retracts to reveal the next stream in sequence once again (blind-%d.png). I’ve tried using itsoffset to accomplish this. No audio is required.
However, only the first PNG sequence is played, the second never seems to happen.
The command I am using is :
ffmpeg -i rtmp://localhost/live/$stream -i blind/blindRev-%d.png -itsoffset 28 -i blind/blind-%d.png -filter_complex overlay -an -f flv rtmp://localhost/live/All
What am I doing incorrectly ?
Many thanks. -
Cant get the progress multiple times, just once. laravel-ffmpeg
22 mai 2022, par RamixI am encountering some problems getting the progress percentage for package called - laravel-ffmpeg. It is called just once when the file has finished transcoding. I tried small and big file, got the same result. Here is the code.


FFMpeg::open('test_video.mp4')
 ->export()
 ->onProgress(function ($percentage, $remaining) {
 echo "{$remaining}";
 Asset::where('parent_catalog', '7a42ae6d-872d-4c2c-8e85-832ed9902fac')->update(['proxy_status' => $percentage]);
 })->save("test_output.mp4");



Could it be package issue or my lack of knowledge with PHP ?