
Recherche avancée
Autres articles (14)
-
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 (...) -
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 (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (4070)
-
How to install ffmpeg using xampp
28 avril 2014, par Paul LedgerI am trying to install ffmpeg onto my localhost server. I have followed countless blogs and tutorials online form other people who are stuck with this same problem. I follow everything to the letter.
- Unzip the file
- Copy php_ffmpeg.exe to ext folder in php
- copy the rest to system 32
As it says however when I do this I get this error when I start apache.
Fair play but it is in the folder
I also get this error as well :
And Again, here it is :
I have added the extention to my php.ini file
extension=php_ffmpeg.dll
The first time I go this to work I placed the ffmpeg.exe file onto my local host server and ran commands like this :
$cmd = "$ffmpegpath -i $input -an -ss $sec -s $size $output";
shell_exec($cmd);This works fine on my computer but not on an actual server. Could somebody offer some advice or guidene on where I have one wrong installing the extension or why running the .exe file on a lunix server with shell_exec doesn’t work
-
ffmpeg:Unable to broadcast to live stream from webcam
13 mai 2020, par gbenga ogunbuleI have this code that I believe should be able to grab from webcam and broadcast a live stream i.e. Users will be able to watch or stream live what there admin is doing at that moment in time.



I have this code for it



C:\Apache24\htdocs\v­ideo\assets\ffmpeg\b­in>ffmpeg -f dshow -i video="HP Webcam" -c:v libx264 -preset ultrafast -tune zerolatency -r 10 -async 1 -c:a libmp3lame -b:a 24k -ar 22050 -bsf:v h264_mp4toannexb -maxrate 750k -bufsize 3000k -f mpegt s C:\Apache24\htdocs\v­ideo\assets\uploads\­videos\en.mp4




Also notice I use the absolute path
mpegt s C:\Apache24\htdocs\v­ideo\assets\uploads\­videos\en.mp4
insteadlocalhost/video/assets/uploads/videos/en.mp4
and the reason is because, when I use the latter, it is recording the video into the folder where I run the command.


And this is the HTML code I wrote for it.



<video width="320" height="240" controls="controls">
 <source src="assets/uploads/videos/en.mp4" type="video/mp4">
Your browser does not support the video tag.
</source></video>




How do I online streaming using ffmpeg


-
What ffmpeg filters can I use to achieve shrinking a video and keeping original aspect ratio ?
3 août 2020, par sivanoI am trying to do some specific video editing with ffmpeg and am lacking the correct terminology to describe it (and thus read online how to achieve it). Can someone help describe this using standard (ffmpeg/video editing) terminology ?


The below describes it verbosely, and you can see it visually at the end (this was done manually for one image).


I have a video with aspect ratio 1280x720. At some point in the video, I want to shrink the video diagonally (i.e. maintaining aspect ratio) so that it only takes up half the original width (i.e. 640) and then pad what is left with black. The purpose of this is to then overlay some other image on the left hand of the modified video.






Thank you