
Advanced search
Medias (91)
-
MediaSPIP Simple : futur thème graphique par défaut?
26 September 2013, by
Updated: October 2013
Language: français
Type: Video
-
avec chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
sans chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
config chosen
13 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
SPIP - plugins - embed code - Exemple
2 September 2013, by
Updated: September 2013
Language: français
Type: Picture
-
GetID3 - Bloc informations de fichiers
9 April 2013, by
Updated: May 2013
Language: français
Type: Picture
Other articles (67)
-
La sauvegarde automatique de canaux SPIP
1 April 2010, byDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Script d’installation automatique de MediaSPIP
25 April 2011, byAfin 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 (...) -
Automated installation script of MediaSPIP
25 April 2011, byTo 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 (...)
On other websites (6219)
-
Best Approach to get RTSP Streaming into WebBrowser? from IP Camera
6 November 2014, by WhoamiIs it possible to get the RTSP Streaming data into the WebBrowser ?
Below are some of my findings. Kindly correct me if i am wrong ?
1) Only Mac OS, and Safari supports RTSP Live Streaming.
2) HTML 5 video can not support RTSP.
3) I can use the vlc plugin, but i dont want to use that.
Possibility of mixing ffmpeg and websocket ?
Assume My IP Cam is connected with Ethernet.
In the Client Machine :
1) I run ffmpeg to get the data from Server [ ie: IP ]
2) Client machine runs websocket.
3) Once ffmpeg gets the data from RTSP Server, it decodes, and generates the raw image of
any format. [ ex: yuv ].4) Now, i have to send this image to browser through websocket.
Question:
1) It is the right approach ?
2) How can i get the decoded image from ffmpeg into the browser ?I might be wrong in different places. KIndly provide input.
-
Pseudo-streaming mp4 files does not work with flash player
11 May 2013, by faridvI've got a problem with streaming audio on my website. I thought I could put the MP3 file inside an MP4 container with h264 codec, so I can use pseudo-streaming ability of mp4 codec.
The code I'm using to convert my files is:
ffmpeg -i 1.mp3 -y -b:a 32K -vn 1.mp4
Pseudo-streaming (seeking in not-loaded parts of media) now works in HTML5 player but not in any Flash media players such as JWPlayer or FlowPlayer.
I've tested my files on both Apache server with
h264
module enabled and Nginx withmod_mp4
enabled, but without any lucks.I tried MP4Box, QTIndexSwapper and even creating a real video file by mixing of an image loop and my audio file.
ffmpeg -y -i joojoo.png -i 2.mp3 -vcodec mjpeg havij.mp4
MP4Box -add havij.mp4 -isma havij_new.mp4What am I doing wrong? What can I do to make it work?
-
ffmpeg Streaming from second X to icecast2
26 August 2020, by Chris-The-Tuneri try to stream a MP3 file to icecast2 with it's native bitrate (320 kbit/s).


In first i had issues with ffmpeg reading way to fast, this was solved with the
-re
parameter.
Before the stream would run way to fast.
Now i think-re
is my problem, i want to stream the file from second X (using-ss
) to end but still in real time.
I use it like this:

ffmpeg -re -i input.mp3 -ss 19 -f mp3 icecast://source:pass@127.0.0.1:8000/mount



But now it reads the first 19 seconds and then starts streaming, but i would wish to start instantly on second 19, no delay (or at least not full 19 seconds)


I hope there is a way, i'm probably overseeing something, a tip would be really helpful.
Thanks in advance, Chris