
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (100)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (9643)
-
Fragmented mp4 cannot be played on pure html5 video
23 novembre 2017, par Kevin Youngho SeoI need to use a video tag to serve over 3GB of video on the web.
When the page is loaded, it takes a long time for the media element to receive the ’loadedmetadata event’.I’ve found that the size of the moov box is too large (33MB).
So when I re-encoded it with the ’empty_moov + frag_keyframe’ option of ’ffmpeg’, but it also took longer to fetch all fragmented information from the ’Inspector - Network’ tab in Chrome.Is there a way to speed up loading when playing ’fragmented mp4’ with html5 video tag ?
-
Embedding pure python(Cpython) on android
13 août 2020, par KiYugadgeterI want to create movie download app for android for learn.
To make develop easily, I would like to use youtube-dl for downloader backend.


So I want to embed Cpython runtime and ffmpeg (for convert movie format) to Android app.
Is it able to do with android NDK ?


Note that I know more better ways are exist.(like use java-friend python runtime or downloader implement as online server)


But I want to try to embed python and ffmpeg in app for learn.


Can it with Android NDK ?


-
How to use FFmpeg to generate a pure black stream and push to RTMP by code in C++
23 avril 2022, par GuohyI'm new in FFmpeg. I want to generate a pure black stream using FFmpeg, and I don't want to use the FFmpeg command. I know below command can work.


ffmpeg -f lavfi -i color=size=1920x1080:rate=25:color=black -f flv rtmp://172.16.63.123:9911/live/33bld



So, someone knows how to generate a pure black stream and push to RTMP by code in C++ ? Thanks a lot.