
Recherche avancée
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (7229)
-
avformat/rtpdec_rfc4175 : fix interlace format
3 février 2022, par Patrick Keroulasavformat/rtpdec_rfc4175 : fix interlace format
In previous state, a new frame was allocated on each timestamp step,
i.e. each frame/field transition. However, for interlace, a new frame
should be allocated on 1st field, completed with the 2nd and finally
freed.This commit fixes the frame allocation and the detection of missing RTP
markers.Signed-off-by : Patrick Keroulas <patrick.keroulas@radio-canada.ca>
Signed-off-by : Limin Wang <lance.lmwang@gmail.com> -
How to use the Source Code instead of a specific OS App with a Python Project [closed]
28 septembre 2021, par Lara SakaIf I want for example to install ffmpeg to use AudioSegment Library(which convert Audio to text). When you open their website you will see download for windows, apple, linux and a source code I want to use the ffmpeg in the Project regardless of the operating system by using the source code of the ffmpeg !


How Can I do that ?




Thanks in advance..


-
how to install ffmpeg for generating thumbnail images and how to install ffmpeg in linux server on godaddy
18 juin 2015, par Intrepid Uliyarhow to install ffmpeg for generating thumbnail images and how to install ffmpeg in linux server on godaddy
i need to install ffmpeg for generating thumbnail images, it’s working fine in localhost(Windows), but not work in Linux(i don’t know server platform). i have refer some website.in that they put like exe are not execute in linux server, we need to install ffmpeg programmatically. can anyone give me suggestion.i have refer some website. but that’s not useful.
my code
$video = "../../".$down_path;
$rand=mt_rand(111111,999999);
//where to save the image
$image1 = "../../completed_project/thumb/".$rand.'ss.jpg';
$image2 = "../../completed_project/thumb/".$rand.'uu.jpg';
$image3 = "../../completed_project/thumb/".$rand.'rr.jpg';
$thumb_image1 = "completed_project/thumb/".$rand.'ss.jpg';
$thumb_image2 = "completed_project/thumb/".$rand.'uu.jpg';
$thumb_image3 = "completed_project/thumb/".$rand.'rr.jpg';
//time to take screenshot at
$interval1 = 2;
$interval2 = 4;
$interval3 = 5;
//screenshot size
$size = '320x240';
//ffmpeg command
$cmd1 = "$ffmpeg -i $video -deinterlace -an -ss $interval1 -f mjpeg -t 1 -r 1 -y -s $size $image1 2>&1";
$cmd2 = "$ffmpeg -i $video -deinterlace -an -ss $interval2 -f mjpeg -t 1 -r 1 -y -s $size $image2 2>&1";
$cmd3 = "$ffmpeg -i $video -deinterlace -an -ss $interval3 -f mjpeg -t 1 -r 1 -y -s $size $image3 2>&1";
$return = `$cmd1`.`$cmd2`.`$cmd3`;
print_r($cmd1);Output Like this
ffmpeg.exe -i ../../completed_project/606560114793SK_PROMO-45s.mp4 -deinterlace -an -ss 2 -f mjpeg -t 1 -r 1 -y -s 320x240 ../../completed_project/thumb/362796ss.jpg 2>&1