
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
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 (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 (5338)
-
Attempting to parse an m3u8 file in FFmpeg with mismatched extensions and formats
2 juin, par Daniel MeloAs I attempt to parse an m3u8 file thats being downloaded over the air, it utilizes "html" as an extension to represent the ts video slices. Even with the command being written as follows :


ffmpeg -allowed_extensions ALL -i https://.../master.m3u8 -codec copy ./out.mkv



It still produces the following error :


detected format mpegts extension none mismatches allowed extensions in url (...)/page-0.html



Could there be a way to ignore this format and extension mismatch ?


-
FFMPEG - Stream to RTMP output and save to MP4 at same time - with reconnect
13 janvier 2021, par MattI'm trying to setup a pipeline where I can take an input and save to MP4 whilst at the same time streaming to an RTMP server.



So far I've been able to use a tee filter to achieve this and also using the onfail=ignore to make sure the pipeline stays up in the event of the RTMP/Recording failing.



Which is great !



However, I don't want the RTMP to just give up if it were to drop or be disconnected, I'd like it to keep attempting to reconnect and resume the stream.



I don't think FFMPEG has something like this, so I'd need to write it in a bash script or something that keeps restarting the process in the event of a drop.



I just have no idea how to achieve this !



Has anybody got any ideas or tackled this before ?



Thanks,



Matt


-
Is it possible to read all files of the same format into one command in ffmpeg ?
17 juillet 2021, par DataMscI have a python script which downloads a number of .ts and .aac files in the current working directory. I want to be able to concatenate them individually and then combine the final .ts and .aac files to produce the output.


Currently, I have around 90 files for both ts and aac. I understand it is possible to create a batch file containing the entirety of the related files which can be used to join them together, however, I wanted to find a solution that can ignore the creation of a batch file to increase the speed of the script.


Here is a basic interpretation of my request :


- 

-
1.ts, 2.ts, 3.ts, 4.ts, 5.ts, 6.ts


ffmpeg -f concat -safe 0 -i 1.ts:6.ts -c copy output.ts






I've tried surfing the web for a solution, but all results lead me back to a batch file.
Any help is appreciated


-