
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (12)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (6419)
-
PHP - Problems running ffmpeg.exe with shell_exec on Windows
30 septembre 2012, par KingI am trying to encode an FLV file to MP4 with ffmpeg.exe, its all working fine when running the code on the commandprompt (I have tried simply echoing the command and pasting it into the cmdline)
Note : Using windows.
Here is the code :
it does not return anything, and does not encode anything, there are no errors, nothing happens :(,system($cmd, $returnval)
returns1
that's all
running commands likedir
works fine, so I have the required access.<?php
$title = $_GET['file'];
// encoding command > , below shows info "flv/'.$title.'.flv" "mp4/'.$title.'.mp4"
$cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -i "flv/'.$title.'.flv"');
$ll = system($cmd, $fv);
echo "CMD: $cmd \nFull output: $fv \nLL = $ll";
?>ffmpeg.exe -h will return the help text, I am starting to wonder if it could have something to do with the other outputs having colours in them ?
Any ideas ? :O
(The cd is not the problem because
$cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -h');
works fine, its actually already in that directory) -
Detect Windows Phone 8 in Desktop mode to filter out false positives for file upload support.
18 juillet 2013, par blueimpDetect Windows Phone 8 in Desktop mode to filter out false positives for file upload support.
Thanks to Achim Stöhr for the findings.
-
Using ffmpeg to play file on windows, should use directshow to render the decoded frame [on hold]
22 juillet 2013, par TerryI want to write a video file player using ffmpeg(support many format).
However ffmpeg(/ffplay.exe) using SDL to render the video frame and play the audio sound. I only want to support windows platform. I think the default windows technology/api is more suitalbe for me to render the decoded frame. Do you think so ?
If so, should I use direct show, or just using direct draw for video frame and direct sound for audio frame.
If using direct show, I think I need to wrapper a direct show source filter(/splitter), then pass down the decoded video/audio frame data to render filter.
Please help me which is the best choice ?