
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (77)
-
Support de tous types de médias
10 avril 2011Contrairement à 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, parMediaSPIP 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, parPar 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 BabiarzI 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 JensejI 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 HollingworthI’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 : SoundHandlerand 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 ?