Recherche avancée

Médias (91)

Autres articles (77)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (6007)

  • ffmpeg convert without loss quality

    10 janvier 2015, par Jędrzej Babiarz

    I need convert all videos to my video player (in website) when file type is other than flv/mp4/webm.

    When I use : ffmpeg -i filename.mkv -sameq -ar 22050 filename.mp4 :

    [h264 @ 0x645ee0] error while decoding MB 22 1, bytestream (8786)

    My point is, what I should do, when I need convert file type : .mkv and other(not supported by jwplayer) to flv/mp4 without quality loss.

  • ffmpeg convert without loss quality

    14 avril 2023, par Jensej

    I need convert all videos to my video player (in website) when file type is other than flv/mp4/webm.

    



    When I use : ffmpeg -i filename.mkv -sameq -ar 22050 filename.mp4 :

    



    


    [h264 @ 0x645ee0] error while decoding MB 22 1, bytestream (8786)

    


    



    My point is, what I should do, when I need convert file type : .mkv and other(not supported by jwplayer) to flv/mp4 without quality loss.

    


  • ffmpeg overlay filter : maintain audio and video quality

    30 avril 2018, par Dave Hollingworth

    I’m adding a watermark to a video using the ffmpeg overlay filter, and I want to preserve the original quality of the video. This is the output of ffmpeg -i for the original video :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'original_recording.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2mp41
       encoder         : Lavf57.25.100
     Duration: 00:03:59.13, start: 0.000000, bitrate: 1932 kb/s
       Stream #0:0(und): Video: mpeg4 (Simple Profile) (mp4v / 0x7634706D), yuv420p, 1472x828 [SAR 1:1 DAR 16:9], 1796 kb/s, 24.96 fps, 25 tbr, 12800 tbn, 25 tbc (default)
       Metadata:
         handler_name    : VideoHandler
       Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 129 kb/s (default)
       Metadata:
         handler_name    : SoundHandler

    and this is the command I’m using to overlay an image file in the bottom right hand corner (basically a watermark) :

    ffmpeg -i original_recording.mp4 -i watermark.png -filter_complex "overlay=W-w-45:H-h-35" -c:v libx264 -strict -2 output.mp4

    I added the libx264 option becausee the output was coming out all wibbly. However, when I use this, the size of the output file is much smaller than the original. (There’s no noticeable loss in quality when I play the video, but I’d rather not lose quality if possible). I’m very much not an expert on video formats, to be honest I’m a bit lost.

    I’ve tried the -crf option but that gives this error message :

    Codec AVOption crf (Select the quality for constant quality mode) specified for output file #0 (output.mp4) has not been used for any stream. The most likely reason is either wrong type (e.g. a video option with no video streams) or that it is a private option of some encoder which was not actually used for any stream.

    What would be the best way to overlay an image as a watermark whilst preserving the quality of the original video as much as possible ?