
Recherche avancée
Autres articles (99)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (11854)
-
How to retransmit RTSP stream to media server in Qt / C++
10 juillet 2021, par vishal dharankarI have an application where I receive an RTSP stream on a local IP address. This stream I want to retransmit to a media server which runs on public IP.


Is it possible to forward such stream to next server without deciding and encoding this saving computations ?


Can we use Gstreamer or any other similar library for this ?


Sorry for not attaching any code since I am not sure where to start and what can be a specific library for this.


-
ffmpeg mov_text subtitle too small when converting mkv to mp4
16 octobre 2020, par Utkarsh SinghI want to remux a mkv file into mp4.
I used the following command.


ffmpeg -i "input.mkv" -c:v copy -c:a copy -map 0:0 -map 0:1 -map 0:2 -map 0:3 -c:s mov_text "output.mp4"



Problem : The subtitles in the
output.mp4
file are way too small.

Also, the subtitles of the mp4 file are unaffected when I try to make them bigger from vlc preferences.
I can turn them on/off but I think they are somewhat hardcoded.
I had to rencode subtitles while remuxing as otherwise it was showing error.


input.mkv
:



output.mp4
:





input.mkv
has the following streams,codecs :



I searched a lot, but couldn't find a way to make
mov_text
subtitles bigger. How can I make them bigger ?

Or Please suggest any other way to retain the subtitles while remuxing from mkv to mp4.


-
Ffmpeg output gif is not playing on some media player
25 décembre 2019, par VickyI am using below command to convert video into gif.
ffmpeg -y -ss 0 -t 14 -i Demo.mp4 -vf fps=10,scale=352:640 -gifflags -transdiff -y Test.gif
Output gif is playing with my PC browser but on android device, it is not playing with all gallery and media player. What is the issue with my command ? I can not figure out.