
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (12)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Les thèmes de MediaSpip
4 juin 20133 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
Thèmes MediaSPIP
3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...) -
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 (...)
Sur d’autres sites (3308)
-
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
-
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.


-
avisynth AverageLuma() function equivalent in ffmpeg libraries ?
3 novembre 2013, par KG6ZVPI am working on implementing some software to analyze videos and would like to transition the project from avisynth to libavformat/libavcodec.
The Problem : I would like to seek through every frame in a given input video, detect black frames and write that list to a file. Is there a function which would allow me to get the light level of the current frame ? I realize that I may have to implement such a function myself, but as of now, I don't even know where I could collect the information on individual pixels in each frame to start that analysis. Help is greatly appreciated !