
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (63)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
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 (...)
Sur d’autres sites (6855)
-
Live video ffmpeg latency using RTMP
24 mars 2014, par bisc8I have a video stream that I want to broadcast via RTMP.
I'm using ffmpeg to do so, with the following command :
ffmpeg -i http://192.168.1.77:18000/stream.flv -c copy -f flv rtmp://localhost/myapp/mystream
As far as I know, transcoding the video stream would introduce some latency. So my question is : is it possible that I am introducing latency in the output stream by using this ffmpeg command (copy) ?
Side note :
I'm trying to redirect my live video stream to a nginx-server in order to broadcast it (via RTMP) for several jwplayers. So far I got a delay of 1 second and some frames and I am wondering if it is possible to reduce it. -
How I can to extract video thumbnails(keyframes) from videofile without blackframes using Ffmpeg ? [on hold]
21 mars 2014, par user3021440How I can to extract video thumbnails(keyframes) from videofile without blackframes using Ffmpeg ? Now, my command is
ffmpeg -progress "/home/bogdanovich/parser/images/videos/previews/Klondike.2014.S01E01.Paradox.WEBDLRip/original/createlog.txt" -y -ss 10 -timelimit 3600 -i "/home/bogdanovich/Media/Klondike.(s01).Paradox/Klondike.2014.S01E01.Paradox.WEBDLRip.flv" -frames:v 10 -r 0.05 -vf select="isnan(prev_selected_t)+gte(t-prev_selected_t\,180)*eq(pict_type\,I)" -an -vsync vfr "/home/bogdanovich/parser/images/videos/previews/Klondike.2014.S01E01.Paradox.WEBDLRip/original/%03d.jpeg" > /dev/null &
-
python simple web app stack [on hold]
8 septembre 2013, par Shonu93I am currently learning python and have written an app that I would like to put out on the web and/or Facebook platform. My script for the app is around 50-100 lines. The things I would like to implement are :
1.HTML5 and CSS3
- I'm good with this and would like to make the front end really appealing.
2.Database
- A simple database that keeps some basic info of the users who have used this app. (Either
through their Facebook account or something else ! ) - I would also like to have the option of storing 30 second mp3 clips. Say around 50 of
these clips which the user can select and download.
3.Python Backend
- My python script should process user input on the server and send the output to the user.
- My server should also have ffmpeg and lame libraries installed. (As my app requires this !)
NOTE ** I would like to develop the complete web app locally first, before deploying it on the web **
I really have no idea how to go about this. My app works like a charm on my Mac OSX and I really want to deploy this app on the web to make others happy too ! Do help me out guys !