
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 (38)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6899)
-
How to cut video stream to pictures and convert into new video stream ? [on hold]
17 septembre 2013, par DevellMenI have video stream from my camera. I need in realtime cut video to pictures and convert it to new video stream. It's realy ? It is necessary to convert video from Fisheye Camera to landscape. Anybody knows ? Maybe there are other solutions ?
sample(inaccurate) I will add a good sample later. -
stream icecast stream to owncast
6 février 2024, par ArchI have a icecast stream at this address :
https://some_icecast_station.org/radio/8000/radio.mp3


I want this to be streamed to


rtmp ://some_owncast_server.org:19350/live in combination with


I was looking the following command :


ffmpeg -i https://some_icecast_server.org:8000/radio.mp3 -c:v libx264 -c:a aac -f flv rtmp ://some_owncast_server:19350/live


This command does not work, what am i doing wrong and where to put the key for the owncast server ?


Thanks in advance


-
how can stop stream after start stream with ffmpeg php ?
8 octobre 2017, par kenano starooI’m attempting to run the following command in PHP (on Ubuntu) :
it is start button
start<?php
if (exec("ffmpeg -i input.avi output.avi >/dev/null 2>/dev/null&"))
{ echo "Success"; }
else { echo "No good"; }so after start how i can kill-stop this with -php code
Any ideas on this be working for stop it ? Thanks.