Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (60)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

Sur d’autres sites (8326)

  • ffmpeg convert yuv400p16le to yuv42016le

    24 août 2020, par Gyu

    I want to convert yuv400p16le file to yuv420p16le file with ffmpeg.

    


    This command is not working with error.
Please help....

    


    ffmpeg -i OutVID00_depth_3840x2160_yuv400p16le.yuv -pix_fmt yuv420p16le -c:v rawvideo -an -s 3840x2160 -y output.yuv


    


    [IMGUTILS @ 0000009a769ff1c0] Picture size 0x0 is invalid
OutVID00_depth_3840x2160_yuv400p16le.yuv : Invalid argument

    


  • Convert .mkv to .mp4 with hdmv_pgs_subtitle and subrip

    25 août 2022, par Osoa

    Trying to batch convert a folder of .mkv to .mp4 with all streams, however subrip and hdmv_pgs_subtitle is not support in the mp4 format. How can I convert from .mkv to .mp4 loselessly while keeping all subtitle streams ?
Command I'm executing :

    


    for %i in (*.mkv) do ffmpeg -i "%i" -codec copy -map 0 "%~ni.mp4"


    


    Error :

    


    [mp4 @ 000001ced1bf7900] track 1: codec frame size is not set
[mp4 @ 000001ced1bf7900] track 2: codec frame size is not set
[mp4 @ 000001ced1bf7900] track 3: codec frame size is not set
[mp4 @ 000001ced1bf7900] track 4: codec frame size is not set
[mp4 @ 000001ced1bf7900] track 5: codec frame size is not set
[mp4 @ 000001ced1bf7900] Could not find tag for codec hdmv_pgs_subtitle in stream #6, codec not currently supported in container
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Error initializing output stream 0:35 --


    


  • How to convert a 4K ProRes into different formats with FFmpeg ?

    18 octobre 2018, par adsalpha

    I have a video which is 3840 × 2160 encoded using Apple ProRes 422.

    I need to convert it to the following sizes/codecs without losing in quality :

    1. ProRes 422 1080p ;
    2. H264 4K ;
    3. H264 1080p.

    I need to do it programmatically so I went with FFmpeg. My command is ffmpeg -i input.mov -vf scale=1920:1080 -c:v prores_ks -preset slow output.mov. I don’t like the result – the colors are less saturated.

    What is the right command to do it ?