Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (108)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

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

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (11969)

  • Unknown input : 'dshow' [on hold]

    2 avril 2018, par Santa Maria

    Я ввела команду ffmpeg -list_devices true -f dshow -i dummy, но нормального результата не было. FFmpeg выдаёт ошибку unknown input: 'dshow'. Что делать ? Прошу прощения, если вопрос глупый

  • dashenc : check pts to prevent division by zero error

    30 janvier 2020, par Alfred E. Heggestad
    dashenc : check pts to prevent division by zero error
    

    this usecase will cause a division by zero trap :

    1. dashenc has received one frame
    2. os->max_pts and os->start_pts have same value
    3. delta between max_pts and start_pts is 0
    4. av_rescale_q(0, x, y) returns 0
    5. this value is used as denominator in division
    6. Bang ! -> segfault

    this fix checks that max_pts > start_pts.
    the fix has been tested and works.

    Signed-off-by : Alfred E. Heggestad <alfred.heggestad@gmail.com>
    Reviewed-by : Jeyapal, Karthick <kjeyapal@akamai.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/dashenc.c
  • ffmpeg padding while leaving audio track unchanged

    17 janvier 2016, par mmj

    My cheap 16:9 TV is not able to play correctly a 1280x544 video (I see the 2.35:1 aspect ratio image vertically stretched to 16:9 aspect ratio, incomprehensibly the TV aspect ratio adjustment is disabled if source is USB), so I used ffmpeg (on Windows 10) to add two 88 pixels high horizontal black bars in order to get to a 1280x720 video with a 16:9 aspect ratio, using the following command :

    ffmpeg -i my_input_video.mkv -filter:v "pad=1280:720:0:88" my_output_video.mkv

    My TV play the new video correctly, but it says that the audio is not supported, whereas in the original video it was.

    How can I pad the original video leaving the audio track unchanged ?