
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (42)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs.
Sur d’autres sites (5225)
-
How to encrypt webm file using Clear Key to play with Google's Shaka Player ?
23 janvier 2017, par Nam PhamI’m developing a small system which will be used to streaming protected content over the web with MSE/EME API.
This is some tools I’m using :
- FFMPEG
- Google’s Shaka-Packager
- webm_crypt
I can create .webm file and package them using shaka-packager into mpd file in order to feed to shaka-player. But following by the Clear Key section in the Shaka docs I have to encrypt webm file require pair of
KeyId
andKey
.
By using webm_crypt, I can created encrypted content by follow this document on 2.2.7 but I have no idea how to get the key pairs for the shaka-player DRM system. -
Displaying javacv Frame class
3 avril 2018, par shubham jaiswalI want to display a javacv Frame object directly into a gui container without converting into a buffered image or any of the jpeg/bmp as mentioned in https://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/Image.html. Is there any way in which it can be achieved ?
I want to do this as I have multiple video streams to be displayed.Currently the best performance that could be achieved is using JFrame and pixelwriter.It consumes around 8% CPU. I want to bring it to below 4% and so need a method to display the Frame object directly.
If anyone could suggest an alternative GUI or language, it still helps.
Regards & Thanks.
-
split mp4-videos with ffmpeg as acurate as possible
31 mai 2018, par atticusI’m trying to split a mp4-Video (Video-codec : h264 Audio-codec : mp3) with ffmpeg.
I know there are many other Threads here with similar issues but in my case I’m trying to be as accurate as possible. My first command wasffmpeg -ss <starttime> -i -to <duration> -c copy </duration></starttime>
As I lernt about the issue with the Keyframes I created a command like thisffmpeg -ss <starttime> -i -to <duration> -acodec copy -vcodec h264 </duration></starttime>
As I’ve seen in some Forums it is possible to handle the keyframe-issue by inserting manually Keyframes but I’ve found nothing about how exactly this could be done and weather it really helps.?
And how exact could it become if I re-encode the whole thing like in my second command and do I need to re-encode the audio Stream too ?EDIT : Or is it better to use the trim filter ?
PS.:As I’m new to this network I hope not to have created a duplicate and to have it sorted into the right section. (And apologize my English skills)