Recherche avancée

Médias (10)

Mot : - Tags -/wav

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

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

  • avcodec/libx265 : improve full range flag setting logic

    17 août 2021, par Jan Ekström
    avcodec/libx265 : improve full range flag setting logic
    

    Unlike libx264, libx265 does not have a separate "unspecified"/"auto"
    default for color range, so we do always have to specify it.
    Thus, we are required to handle the RGB case on the libavcodec
    side to enable the correct value to be written out in in case
    of RGB content with unspecified color range being received.

    In other words :
    1. If the user has set color range specifically, follow that.
    2. If the user has not set color range specifically, set full
    range by default in case of RGB and YUVJ pixel formats.

    • [DH] libavcodec/libx265.c
  • ffmpeg - different video and audio length synchronization

    4 mai 2020, par Halil Han Badem

    I have a task where the sound is longer and the image should come later.
Actually, this is exactly what I want, but it's a bit different : ffmpeg : mix audio and video of different length

    



    First of all, I leave the picture I draw below to be understood.
Click to see the image.

    



    By doing this I am thinking of catching sync. With which ffmpeg command can I do this ?
Thank you.

    


  • MediaConvert split video into multiple chunk but in different duration length

    12 novembre 2020, par Sandip

    I have one video with 1 hr time.

    


    i want to chunk in different part by specified range.

    


    ex :

    


      

    1. 0 to 10 min
    2. 


    3. 10 to 40 min
    4. 


    5. 40 to 60 min
    6. 


    


    I know it is possible by ffmpeg but i want to do this with MediaConvert.

    


    here is sample for ffmpeg but same thing i want do using MediaConvert

    


    ffmpeg -i input.mp4 -c copy -f segment -segment_times 0,600,2400 output%d.mp4