
Recherche avancée
Autres articles (95)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (6065)
-
FFMPEG Slideshow from set of videos and images
14 septembre 2018, par RahulI’m making a slideshow video from a couple videos and images.
Making it from images only is quiet easy but what if I have to mix
small videos too.In slideshow the next video/image should come when the previous video is fully played.
Please suggest a command.
-
ffmpeg : best configuration for hls/m3u8
30 septembre 2018, par Smith AdamI was trying to broadcast an M3U8 video (HLS), using FFMPEG, to a player (rtmp ://[address]/[path]/[key])... To do this I followed this tutorial and it worked, but when I played it on VLC, it buffered frequently...
Here the question... What are the best settings for broadcasting an M3U8 file fluently using FFMPEG ?
Quality : From HD m3u8 file to Standard Definition
Internet speed : 30 mb download, 3 mb upload
Computer’s RAM : 3 gb -
What Tee pseudo-muxer command line for multiple output ffmpeg works for output in mp4 and stream udp unicast ?
10 mars 2017, par Mohammad TahaI am using ffmpeg command line for getting multiple outputs with tee pseudo-muxer. Commands I have tried :
Case 1- To muxed Video (
video.h264
) with Audio (audio.aac
) in mp4 and send mpegts to udp unicast address :ffmpeg -i 'video.h264' -i "audio.aac" -vcodec copy -acodec copy -absf aac_adtstoasc -f tee -map 1:v -map 0:a "result.mp4|[f=mpegts]udp://127.0.0.1:2211"
Output 1 : Resultant mp4 file has no audio and the udp stream when played is also having no audio.
Case 2- To muxed Video (
video.h26
4) with Audio (audio.aac
) in mpegts file and send mpegts to udp unicast address :ffmpeg -i 'video.h264' -i "audio.aac" -vcodec copy -acodec copy -f tee -map 1:v -map 0:a "[f=mpefts]result.mpeg|[f=mpegts]udp://127.0.0.1:2211"
Output 2 : Resultant mpegts file is fine and the udp stream when played is also having audio. NO ISSUE in this.
I have to do Case 1 where i can mux aac and h264 and get two output one is mp4 file dump and second is stream mpegts udp unicast (like udp ://127.0.0.1:2211). And both the output should have video+audio.
Can anybody tell me why in Case 1 the output file is not having audio ?