
Recherche avancée
Autres articles (46)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (9761)
-
ffmpeg - splitting TS file into shorter file by time
20 janvier 2017, par Rob EvesI am trying to convert a very long .ts video file - into a much shorter mp4 file.
The command I am using is :
ffmpeg.exe -i "C:\Users\Rob\Desktop\230316.ts" -ss 00:05:08 -t 00:00:50 -c copy "C:\Users\Rob\Desktop\VideoSplitter\16.18.mp4"
However, when running this, ffmpeg gets "stuck" and repeats the same line over and over in the terminal :
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/
frame= 0 fps=0.0 q=-1.0 size= 469kB time=00:00:50.01 bitrate= 76.8kbits/When I press CTRL+C to exit, I notice the new file has been created... however, only with audio and no video at all.
Any ideas how to fix this please ? I am using the latest ffmpeg.exe.
-
Python source code to convert all videos of .avi to .mp4 at a time
4 juin 2018, par vikash tiwariI want to convert nearly 900 videos from .avi to .mp4 . I am currently using ffmpeg to convert a video but this is taking a lot time as i have to manually enter each file name after one step . I m new to python . So is there a way to write a python code that could take all the videos of .avi format from a directory and convert them into .mp4 and store them into a specified directory ? Any help would be highly appreciated .
Right now i m using this command from my window command prompt to convert the files .
ffmpeg -i output.avi -codec copy output.mp4The code i came up with to do this at a time is :
for i in .avi ; do
ffmpeg -i "$i" -codec copy "$i%..mp4"
done
But it is showing error in my window terminal -
FFMPEG set hls segments start time
15 septembre 2020, par DavidBMy code is :


ffmpeg -i input.mp4 -framerate 30 -rtbufsize 100M -s 640x480 -c:v libx264 -b:v 1200k -minrate 1200k -maxrate 1200k -bufsize 1200k -vf mpdecimate -g 15 -c:a aac -b:a 96k -ac 2 -ar 44100 -preset veryfast -f hls -hls_segment_type fmp4 -hls_time 2 output.mp4



it generates .m4s chunks that are streamed perfectly with MediaSource API. Is it possible to move chunks start time to specified offset, so that stream to be start not from 0 but e.g. 250 ?