
Recherche avancée
Autres articles (35)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (8454)
-
Compiling an entire CMAF (.cmfv and .cmfa) stream into mp4
17 janvier 2024, par Logan PriceI am trying to create a general-purpose media downloader in Python which can download online media streams and compile them into one video file (ideally .mp4).


I've encountered media streams using the CMAF format in which a server breaks up complete video files into pieces (video files “.cmfv” and audio files “.cmfa”) and then streams them to the client as they view the content.


I can download all of the individual files, but I am having trouble putting them back together into one video. That is the problem I’m trying to solve


I've tried looping through each of the video files (.cmfv) and writing them all into a new file. After combining, I tried to use FFMPEG to convert the combined .cmfv to mp4. I get an ffmpeg error that the combined .cmfv file cannot be read.


# python

# create empty cmfv file
oldcmfv = open(“somepath”, “w”)

# iterate through individual cmfv files
for file in folder:
 with open(file) as portion:
 # write the cmfv portion to the combined cmfv file
 oldcmfv.write(portion)

oldcmfv.close()

# mp4 path
newmp4 = “somepath”

# attempt to convert cmfv combined file to mp4
# note that I did not try to include the cmfa (audio) files
ffmpeg.output(newmp4).input(oldcmfv).run()




As a side note, it seems that there is very little discussion/information about the CMAF format. There is a technical document published by Apple and one other informational article that I saw but it seems like most resources are explaining how to encode videos into CMAF, but not how to decode them. I found an amazing GitHub repo that downloads CMAF stream media files pretty much automatically, but piecing them together has been a mystery so far.


-
ffmpeg frame type inside name of output
29 juillet 2017, par AdminyWith this command I can split video to individual h265 frames.
ffmpeg -i input.h265 -c:v libx265 -f image2 output/%d.h265
How can I make "output name" to contain frame "type" ?
Like %d_%frame_type.h265
-
ffmpeg conversion for an entire folder ? [closed]
14 mai 2013, par user218314Ive been using :
sudo ffmpeg -i Test.mkv -vcodec copy -acodec libfaac -ac 2 -ab 328k Test.mp4
for individual files, but now I have many gigabytes of mkvs in a folder and would like to do a conversion for all at once and walk away from the computer. I appologize for my ignorance, but i am very new to linux and i dont understand how bash scripts are written or if it would even be necessary.
also, i believe the command downsamples the DTS audio in the mkv to 2 channel AAC. am i correct that 328k is the highest bitrate I can convert to ?