
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (74)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9056)
-
Only trim video without encoding laravel ffmpeg
1er mai 2021, par gyd128I would like to ask if the possibility of using ffmpeg laravel in such a way that when cutting a movie it does not convert it to mp4 a second time ? I'm sending the code as it looks at the moment. There is an option on github to use CopyFormat,
use ProtoneMedia \ LaravelFFMpeg \ FFMpeg \ CopyFormat;
unfortunately it doesn't work on my example. Maybe someone will be that good and guide me to the answer. Sorry for my English

$ffmpeg = \FFMpeg\FFMpeg::create();
 $video = $ffmpeg->open('../../filmy/'.$path);
 $video->filters()->clip(\FFMpeg\Coordinate\TimeCode::fromSeconds($start), \FFMpeg\Coordinate\TimeCode::fromSeconds($end));
 $video->save(new \FFMpeg\Format\Video\X264('libmp3lame'), '../../filmy/conversion/s.mp4');



-
formula to calculate video dimensions for target aspect ratio
23 avril 2015, par Nevoxxi currently building an application that converts videos to a specific dimension under consideration of the target aspect ration.
the target resolution must always be 1280x720, i want to fit the uploaded video in this size using black bars.
can anyone point out a formula to calculate the target video dimensions without changing it’s aspect ratio ? if the target with is smaller then 1280x720 i’ll add the missing pixels as black bars.
i’m using ffmpeg with the
"-vf scale=1280x720,pad=?:?:black"
command(sorry if my english is not that great)
-
How to get success info from ffmpeg on C# ?
13 mars 2014, par user2989391I using ffmpeg on C#, my argument worked fine but i don't know get success handle..
Sorry for my bad English.
Thank you for help.ProcessStartInfo psi = new ProcessStartInfo("bin\\ffmpeg.exe");
Process proc = Process.Start(psi);
psi.UseShellExecute = false;
psi.CreateNoWindow = true;
psi.Arguments = " My argument ";
psi.RedirectStandardError = true;
psi.WindowStyle = ProcessWindowStyle.Hidden;
proc = Process.Start(psi);
StringBuilder sb = new StringBuilder();
StreamReader outputReader = proc.StandardOutput;
while (!(proc.StandardOutput.EndOfStream)) {
sb.AppendLine(proc.StandardOutput.ReadLine());
}
proc.WaitForExit();
proc.Close();
psi = null;