Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (53)

  • 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 ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6063)

  • ffmpeg width not divided by 2 (2247x1500) [duplicate]

    24 juin 2021, par Ruiqing Wu

    [libx264 @ 0000021db7838c80] width not divisible by 2 (2247x1500)
Error initializing output stream 0:0 — Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed !

    


    My code was :
ffmpeg -y -framerate 10 -start_number 0 -i "a__%08d.jpg" -c:v libx264 -vf scale=-1:1500 -pix_fmt yuv420p d :\lustars1.mp4

    


    Is there a way to bypass this ?

    


  • How can I increase the size of an mp4 file to a specific value ?

    20 juin 2023, par zoomer-girl

    this is my first time here. I'm not a programmer. Question : For example, I have a video file size of 1500 mb, I need to increase the video size to 3500 mb, without changing the video quality or lenght. It is important that the final file size should have an accuracy of +- 10 mb. I thought it could be done by adding a second empty audio track using FFMPEG, but I didn't succeed :( If anyone knows how to do this, please help

    


    I tried to add an empty audio track lasting several hours and with a bitrate of 192 kbps using FFMPEG. However, the file size did not change much, although this audio track appeared in the VLC player, but for some reason it showed that the bitrate was 1 kbps

    


  • How to rescale image based on long side with ffmpeg ?

    10 février 2024, par mj2

    I want to rescale an image based on the long side of the image.

    


    If I have a landscape format image e.g. 4000x3000px then this is the right command :

    


    ffmpeg -i input.jpg -vf scale=1500:-1 scaled.jpg

    


    If I have an upright format image e.g. 3000x4000px then this is the right command :

    


    ffmpeg -i input.jpg -vf scale=-1:1500 scaled.jpg

    


    Can I do this in one command ? Another option is to check the format manually with ffmpeg but I don't know how.