Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (8432)

  • hwcontext_vulkan : fix inverted condition when exporting images to drm_prime

    10 mai 2020, par Lynne
    hwcontext_vulkan : fix inverted condition when exporting images to drm_prime
    

    Calling vkGetImageSubresourceLayout is only legal for linear and drm images.

    • [DH] libavutil/hwcontext_vulkan.c
  • ffmpeg Could not write header for output file #0 (incorrect codec parameters ?) : Invalid data found when processing input

    16 mars 2020, par Chu Đình Hoan

    i have a issue with ffmpeg in Ubuntu

    My code :

    sudo ./ffmpeg -i 1.mp4 -vcodec libx264 -rtsp_transport tcp -f rtsp "rtmps://live-api-s.facebook.com:443/rtmp/3687425887995436?s_bl=1&s_ps=1&s_sw=0&s_vt=api-s&a=AbyWyp2zdPRgOIyp"

    Error :

    Could not write header for output file #0 (incorrect codec parameters ?): Invalid data found when processing input
    Error initializing output stream 0:1 --
    [aac @ 0x559df4c2d240] Qavg: -nan
    Conversion failed!

    With above of the code i’m run in Windows 10 x64 is OK but on Ubuntu is get an error.

  • Condition after for loop (Batch/CMD)

    18 janvier 2020, par Qwertz

    So I currently have this batch that converts every .MTS on the current folder to .MP4 using ffmpeg, however when it is done I get both .mp4 and .mts on the folder.
    I have 2 batches, one to convert the files and another one to delete the unwanted files afterwards, but I’m having trouble trying to join them in the same batch script.

    Converter.bat :

    for %%i in (*.MTS) do ffmpeg -i "%%i" -c:a libfdk_aac -b:a 256k "%%~ni.mp4"

    Delete.bat :

    del /S *.MTS

    Any help please ?