
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (103)
-
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 (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (7646)
-
How to create batch file for FFMpeg to download stream videos
7 juin 2017, par bashir sabooriHi I’m using this cmd code to download stream video using ffmpeg :
ffmpeg -i "http://wpc.866f.edgecastcdn.net/03866F/greyback/yourtrinity/130929-webword_,2500,1500,580,265,.mp4.m3u8" -c copy 130929-webword.mkv
now I want a batch file that in running time ask me the video address and the file name by pressing Enter.
-
V2.97a.20170601 download and details.
2 juin 2017, par scottschillerV2.97a.20170601 download and details.
-
How to directly download ffmpeg output without saving it in the server in PHP Codeigniter
19 mai 2017, par JeevaI’ve a video which is converted and then i want to output it as a download file. is there any way to do so. below is a small example.
$video = "C:\Users\user.folder\Downloads\Hamein_Tumse_Pyar_Kitna_no_audio.mp4";
$audio = "C:\Users\user.folder\Downloads\Hamein_Tumse_Pyar_Kitna_audio.mp3";
$cmd = FCPATH.'ffmpeg/bin';
$this->load->helper('download');
$data = file_get_contents(shell_exec($cmd.'\ffmpeg -i '.$video.' -i '.$audio.' -c:v copy -c:a copy '.$cmd.'\output.mp4 -y 2>&1'));
force_download('download_file.mp4',$data);exit;