Recherche avancée

Médias (91)

Autres articles (43)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (6521)

  • Loss less conversion using FFMPEG in react native while adding logo to video

    6 décembre 2019, par Rishav Kumar

    I am using RN-FFMPEG to embed a thumbnail in a video using FFmpeg.
    The problem is that the video quality is highly deteriorated while adding a logo.
    Also, the issue is logo gets highly stretched and distorted in landscape videos but works great in portrait video.

    Can someone help me to have a max-width and max-height to the watermark along with high processing time with lossless conversion ?

    RNFFmpeg.execute('-i ' + video + ' -i ' + logo +' -filter_complex overlay=main_w-overlay_w-25:main_h-overlay_h-25 -codec:a copy /storage/emulated/0/ABC/ABC-' + name + '.mp4')

    This is my FFMPEG code

    Here, video is path of video file.
    logo is path of the watermark
    name is any random number

  • MPEG4 quality saved in MATLAB

    17 août 2017, par guyts

    I need to get an mpeg4 file to use in another application, from an original mpeg4 video I loaded into matlab and edited (frame by frame).
    To do so, I tried using VideoWriter, setting the quality to 100% :

    newVid = VideoWriter(outputfilename, 'MPEG-4');
    newVid.FrameRate = fps;
    newVid.Quality = 100;

    However, the result I’m getting is very poor and if the original unedited video size was 50MB, the one I get post-edit in matlab is around 20MB, and I don’t know how to keep the quality and size as they were.
    I also tried saving as .avi and converting to mpeg4 with ffmpeg, but it gave even poorer results.
    Any ideas ?

  • How to encode low bitrate / low quality MPEG2 video ?

    18 février 2017, par Viliams Bajčinovci

    Got some YUV420 1920x1080 60FPS videos i want to encode with MPEG2 with different quality levels. According to stackoverflow : ffmpeg conversion to mpeg2video I could do it with

    ffmpeg -i input -codec:v mpeg2video -qscale:v 10 output.mpg

    The qscale parameter has a linear scale 2-31 and 31 is the lowest quality but it’s not as bad as I would expect the lowest quality MPEG2 video to look like.

    Also tried these :

    -vcodec mpeg2video -maxrate 4000k
    -vcodec mpeg2video -qmin 69 -qmax 69

    maxrate gets ignored and i get the message that it is too low
    and qmin 69 quality is still higher than i want it to be.

    Does anyone know how to achieve a really low quality MPEG2 video with ffmpeg or any other MPEG2 codec i could use to do this ? Thanks