
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (68)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (13747)
-
Maintaining Video Quality and Size while processing with FFmpeg
2 février 2017, par Syeda ZunairahI am using FFmpeg for video watermarking in android. Everything is working good but now I have to choose one from Video Quality and Video Size but I need to take care of both.
Here is my code
MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();
mediaMetadataRetriever.setDataSource(videoPathtem);
String bitRate = mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_BITRATE);
String cmd = "-y -i " + videoPathtem + " -i " + watermarkImagePath + " -b:v " + bitRate + " -filter_complex overlay=0:0 -strict -2 -metadata:s:v:0 rotate=" + videoRotation + " -preset ultrafast " + resultVideoPath;Now if I don’t define the bitrate in the above command the Video Quality is maintaining but the bitrate is increasing with X5 (i.e. if original bitrate was 1000bps now its 5000kbps almost) resulting too much increase in video size (i.e from 50 MB to 150MB)
But if I define the bitrate in the above command than the bitrate and video size is almost like the original which is perfect but the quality of the video is too low.
Now is there any way I can maintain the quality as well as video size ?
I have searched on SO and checked other answers but nothing seems to handle both.
Thanks.
-
Don't work some keys of coding in FFmpeg
17 décembre 2015, par Plush<?
// $videoPath — path to the video file
// $newVideoPath — path of the resultant video file
exec('/usr/bin/ffmpeg -i ' . $videoPath . ' -vcodec libx264 -profile high -level 3.1 -s 1280x720 -sar 1:1 -aspect 16:9 -b:v 3800K -dct8x8 1 -partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 -refs 5 -fast-pskip 0 -subq 9 -me_method full -me_range 32 -mbd rd -flags +mv4+qpel -g 40 -keyint_min 4 -bf 2 -direct-pred 1 -b_strategy 2 -b-pyramid 1 -weightb 1 -weightp 2 -coder 1 -qmin 0 -qdiff 1 -acodec libfaac -ac 2 -ar 48000 -ab 192K ' . $newVideoPath);I defined keys which don’t work :
- dct8x8 1 - partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8
(coding of video doesn’t work)
- me_method full
(the video file is coded, but it isn’t started in a player)
FFmpeg version :1.2.6
How to involve an adaptive method of transformations 8x8 in an I-shot and to set a method of an assessment of the movement of full pixel as
full
? -
doc : fix a coding style error in the developer documentation.
22 décembre 2013, par Tim Walker