
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...)
Sur d’autres sites (10690)
-
Nginx-rtmp vod play a list of files from a directory
7 juillet 2022, par BalazsI have the following use case :


I would like to playback MP4 files one after another in a mounted directory with nginx-rtmp. I managed to play/access only 1 files at a time.


So instead of this
rtsp ://192.168.1.100/vod/movie01.MP4


then change it to this manually
rtsp ://192.168.1.100/vod/movie02.MP4


Have and endpoint like this and play all of the videos one after another (without using ffmpeg stream to nginx rtmp endpoint).


rtsp ://192.168.1.100/vod/stream


I have a simple config so far


rtmp {
 server {
 listen 1935;
 chunk_size 4096;

 # video on demand for mp4 files
 application vod {
 allow play all;
 wait_video on;
 play /opt/video/vod;

 }
 }
}



How can I achieve this ?


-
How to play video bytes(h265,h264) to any media server from java [closed]
29 avril 2023, par gtejasI have video bytes(came from device through tcp) i write into a file and its able to play now I need to play that stream on media server.


ffmpeg -re -i myfile.mp4 -c:v libx265 -preset ultrafast -f mpegts rtmp ://ip:1935/live/stream


can i play bytes directly ?


-
FFmpeg doesn't play any audio through Discord.py BOT
12 mai 2019, par Lewis HHere is my code for my Discord bot’s play function :
@bot.command()
async def play(ctx, url:str = None): # DOESN'T WORK, DOWNLOADS BUT DOESN'T PLAY
...
ytdl_options = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
}
ytdl = youtube_dl.YoutubeDL(ytdl_options)
loop = asyncio.get_event_loop()
data = await loop.run_in_executor(None, lambda: ytdl.extract_info(url))
if 'entries' in data:
data = data['entries'][0] # taking top item from a YT playlist
source = ytdl.prepare_filename(data)
vc.play(discord.FFmpegPCMAudio(source)) #play audio
print(vc.is_playing())
await ctx.send("Now playing: " + data.get('title')) #now playing
asyncio.sleep(3)
print(vc.is_playing())When I call the function, it runs fine and downloads the video from youtube-dl, then sends the message "Now playing : X", but doesn’t play any audio.
I added the two
print(vc.is_playing())
lines and what is returned in the shell is :True
FalseSo clearly it tries to play the song but immediately fails.
There are no exceptions thrown, so I can’t understand why FFmpeg doesn’t want to play the audio.