
Recherche avancée
Autres articles (106)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (8954)
-
Download the output file of ffmpeg while creating it using php [on hold]
23 septembre 2016, par AmmarI have a php script that downloads an MP3 file after converting it from webM file using
ffmpeg
.The problem is that I have to wait the converting process to finish completely before starting the downloading process, which is very annoying if the file being converted is very big !
What I want is download the MP3 file directly while it’s being created by
ffmpeg
.I spent a lot of time googling my problem but I couldn’t find any solution !
-
How to download/convert multiple streams to .ts with FFmpeg ? [on hold]
28 août 2016, par LeonardoHow to download multiple streams .m3u8 to .ts at one go.
I have a lot of link use .m3u8 streams
but I don’t know how make the download with FFmpeg. -
Fast FFMPEG Convert to MP3 and Download Using PHP
17 août 2016, par dickecilI using this command below to convert .m4a file into .mp3 file
system( "ffmpeg -i " . $m4a . " -ar 44100 -ab 128k -ac 2 " . $mp3 );
But it take up to 30 second until can downloadable using php.
Any idea to make it faster (like 2-5 second only) ?