
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (13871)
-
How to implement Clear-Key video encryption in PHP and play it in HTML [closed]
22 octobre 2018, par Ali FarhoudiI want to implement video encryption in
php
and play encrypted video in HTML5 video. I have read some documents about it :And I know there are alternative tools and services that I can use :
- https://support.uplynk.com/tut_embedding_the_uplynk_player_3.html
- https://www.wowza.com/products/capabilities/streaming-content-security
- https://www.intertrust.com/products/drm-system/livestream/
- https://bitmovin.com/cenc-widevine-drm/
- https://www.html5rocks.com/en/tutorials/eme/basics/
I want to provide like this example :
- https://demo.castlabs.com/ (play big buck bunny smooth streaming : that can’t be downloaded and the url is one-time usable)
What steps should I pass ?
I use PHP (laravel) in server-side. -
ffplay how to play interlaced yuv file
16 février 2015, par Balamurugan AI am playing an interlaced output yuv with ffmpeg and seeing the output is stuttering.
ffplay -v info -f rawvideo -pixel_format nv12 -video_size 720x480 data/yuvframes.yuv
Can anyone please let me know the exact syntax for playing it properly ?
-
unable to play downloaded .ts video files
29 mai 2021, par nishi have downloaded a ts video file from m3u8 index file with the help of this python script


import requests
import m3u8
url1 = "url of the m3u8 file"
r = requests.get(url1)
master_m3u8 = m3u8.loads(r.text)

preurl = "preurl of the m3u8 file "

url2 = preurl + master_m3u8.data["playlists"][2]["uri"]
r2 = requests.get(url2)
sub_m3u8_file = m3u8.loads(r2.text)


with open("philosophy_intro.ts","wb") as f:
 for segment in sub_m3u8_file.data["segments"]:
 url = preurl + segment["uri"]
 res = requests.get(url)
 f.write(res.content)



and this is what segments of the playlists look like
playlists segments


video of the size 800mb is being downloaded but it dosen't play in any media player in my computer also when i try to convert it to mp4 with moviepy script


import moviepy.editor as moviepy
clip = moviepy.VideoFileClip("philosophy_intro.ts")
clip.write_videofile("philosophy_intro.mp4")



it says failed to read the duration of the video file,whats the problem