Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12865)

  • ffmpeg conversion for an entire folder ? [closed]

    14 mai 2013, par user218314

    Ive 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 ?

  • ffmpeg frame type inside name of output

    29 juillet 2017, par Adminy

    With 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 Price

    I 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.