
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (41)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8778)
-
Revision ce88d74d34 : vp9_reconintra_neon : add d45 4x4 based on webp's LD4() 59% faster over 20M pi
18 juin 2015, par James ZernChanged Paths :
Modify /test/test_intra_pred_speed.cc
Modify /vp9/common/arm/neon/vp9_reconintra_neon.c
Modify /vp9/common/vp9_rtcd_defs.pl
vp9_reconintra_neon : add d45 4x4based on webp’s LD4()
59% faster over 20M pixels
Change-Id : I371eaed9ce8f470451046997e130b0ba1a2f7a9c
-
ffmpeg video convert library on my VPS Linux based godaddy server not working
6 mai 2017, par mahesh voraI have some query here for using your ffmpeg video convert library on my VPS Linux based godaddy server.
I have php 5.6.30 version on my server and I want to use your ffmpeg video convert library on my server so I can use that with 5.6.30 php version ?
As I have already many time try my self to install it but each time I am getting different errors while installing process so after that for installation of it on my server I have taken godaddy’s support team help and paid them $100 for install ffmpeg on my VPS server then in end (after 12 days) they said me ffmpeg will work with older version of php only (they saying it will work until you will have php 4.0 after that with any latest version of php it will not work) so they said me downgrade your php version then only it will work, but I can’t do that as I if I will do that then I will fetch some other issues in my project.
So here can you please confirm "your ffmpeg video convert library will work with my php version 5.6.30 (website hosted on godaddy’s VPS Linux based server)" ?
if not working then please suggest me to best other similar library similar to ffmpeg i want only two of the functionality 1) to cut the video 2)may be compress 3)Create thumb from the video.
Waiting for valuable response !
-
Web-based video editor
10 octobre 2014, par DannyWe have a web-based editor currently that allows users to build animated web apps. The apps are made up of shapes, text, images, and videos. Except for videos, all other elements can also be animated around the screen. The result of building a animated app is basically a big blob of JSON.
The playback code for the web app is web-based as well. It takes the JSON blob and constructs the HTML, which ends up playing back in some sort of browser environment. The problem is that most of the time this playback occurs on lower-end hardware like televisions and set-top boxes.
These performance issues go away if there is some way to be able to convert a digital sign to video. Then the STB/smart TV simply plays a video, which is much more performant than playing back animations in a web view.
Given a blob of JSON describing each layer and how to draw each type of object, its animation points, etc, how could I somehow take that and convert it to video on the server ?
My first attempt at this was using PhantomJS to load the playback page in a headless browser, take a series of screenshots, and then use ffmpeg to merge those screenshots into a video. That worked great so long as there is no video. But it does not work with video since there is no HTML5 video tag support in PhantomJS, and even if there was, I would lose any audio.
The other way I was thinking of doing it would be to again load the playback page in PhantomJS, but turn off the video layers and leave them transparent, then take screenshots as a series of PNGs with transparency. I would then combine these with the video layers.
None of this feels very elegant though. I know there are web-based video editors out there that basically do what I’m trying to accomplish, so how do they do it ?