
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 (76)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 ) (...)
Sur d’autres sites (5297)
-
ffmpeg setting for HD and normal quality
14 novembre 2013, par gabo84Hello i need to have two versions of the same file stored on my server, medium and HD quality, the thing is that don't really know ffmpeg that well so im just trying this is code at random, i'm using the code belo but I end up with a much larger file, however it works,it plays.
ffmpeg -i inputfile.wmv -vcodec libx264 -ar 44100 -b 200 -ab 56 -crf 22 -s 360x288 -vpre medium -f flv tmp.flv
Just need the two commands to create the 2 different files
-
Adding DRM to existing HLS
16 janvier 2023, par dkasipovicFor the project I am currently working on, I have an encoding server that converts mp4 files into HLS playlists using ffmpeg. Segments and m3u8 files are then copied to a storage server and served over nginx with load balancing, on demand.


Requirement put in front of me is to implement screenshot protection. Googling around, as one does, I found out that it is actually possible if I add DRM protection to my video content.


However, what I was unable to find out myself is how :


- 

-
Is DRM something that I can do on my own or do I need to buy DRM keys somewhere ? Is third party DRM provider a requirement or just makes things easier ?


-
Can I add DRM protection to already created HLS playlists ? Or will I need to re-encode everything ? I found few tutorials using bento4 with DRM but they are mostly done by DRM providers so they explain how to integrate DRM with their service. Can I run DRM using my infrastructure and keys, without third party service ? Should I ?








If someone can point me in the right direction, it would be most beneficial. For example how to convert simple mp4 file into hls that when played in Safari on iOS cannot be screenshot.


Thank you


-
-
Unosquare FFMediaElement Edit the segments from m3u8 at runtime
23 septembre 2020, par user14326452I am trying to understand the way of m3u8 streaming in UnoSquare FFME MediaElement .
In the UnoSquare FFMediaElement, I can play the simple m3u8 file from the URL , but I have the URL which have encrypted videos, there are some keys that need to be provided for segments on runtime to decrypt and play.
I am going through the source code : https://github.com/unosquare/ffmediaelement
So , I want to know the detail how the m3u8 file is played and if I want to edit/append some keys in the segments list how can I do that, any help is is greatly appreciated