Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (104)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12064)

  • mkv extract full DTS HD Master and Dolby True HD in flac or wav

    11 novembre 2016, par esposito

    I have some mkv files with audio in DTS Master 5.1 / 7.1 and Dolby True HD.

    I like to extract the full lossless audio 24/96 (core + residual part) in one flac or wav.

    If I do this :

    ffmpeg.exe -i input.mkv -map 0:2 output.dts

    or this :

    ffmpeg.exe -i input.mkv -map 0:2 output.flac

    it will extact only a lossy part. For dolby true HD there is the some problem I suppose.

    There is a way to extact full "lossless" audio in flac or wav directly ?

    I don’t like extact 2 files (core + residual) but "merge" All in one flac/wav file.

    thank you !

  • recompiling audio from a movie source

    4 novembre 2016, par jkushner

    Is it possible to recompile movie files to re-stream the audio so they all have the same volume level ? We’ve got users submitting videos and to me it seems some are higher in volume whereas others are not, and they all have the same volume level on the controls, and i’d like to standardize this so all movie files have the same volume levels.

    I was thinking of ffmpeg although I only have novice knowledge of this technology and haven’t done my research in it yet.

    Anyway if there’s anything available I’d love to know.

    Thanks !

  • Python - saving movie with ffmpeg - alternative syntax

    12 octobre 2016, par Honigdachs

    I want to save a real time plot using ffmpeg using a common python syntax below :

    with writer.saving(fig, "anim.mp4", 100):
       ...
       ...
       writer.grab_frame()

    Question : Is there an alternative way like possible for saving file in python ?

    Instead of using the code above, similar to :

    with open('Failed.py', 'w') as file:
       file.write('whatever')

    I would like to use for saving the movie something similar to :

    file = open('Failed.py', 'w')
    file.write('whatever')
    file.close()