
Recherche avancée
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
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 (...)
Sur d’autres sites (6475)
-
PHP FFmpeg, upload video and let user select start and end offsets to trim the video
9 novembre 2015, par KunalThis is what I need to do :
- User goes to the HTML web app (works on desktop and mobile)
- Uploads a video (depending on phone recording and bitrate, could be 100mb)
- Use FFMPEG to trim the video to 15 seconds only.
Now for the 3rd part we need to let the user select the start and end offsets for the trimming. Maybe extract scenes and let them select ?
Please help. Thanks in advance.
-
avcodec/cbs_av1 : fix range of values for Mastering Display Color Volume Metadata...
21 mars 2019, par James Almer -
ffmpeg select stream from adaptive bitrate m3u8
7 février 2020, par Alkitab SuhanoI try to restream hls which is adaptive bitrate. for example m3u8 file
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:BANDWIDTH=2042096,RESOLUTION=1280x720,CODECS="avc1.4d4028,mp4a.40.2"
live/stream_hd/chunks.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=1008963,RESOLUTION=852x480,CODECS="avc1.4d401f,mp4a.40.2"
live/stream_sd/chunks.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=756373,RESOLUTION=960x540,CODECS="avc1.4d4029,mp4a.40.2"
live/stream_md/chunks.m3u8ffmpeg always select the last stream for input. I want ffmpeg to select the first stream (1280x720) How can I do.