
Recherche avancée
Autres articles (74)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
Sur d’autres sites (13519)
-
FFMPEG not recognising -crf or -qp
23 avril 2021, par BenjI am trying to make a losslessly encoded mp4 video out of png images.


I have a folder of images named
frame-%d.png
.

ffmpeg -i frame-%d.png -framerate 30 -c:v libx264 -crf 0 output.mp4


FFMPEG rejects crf and qp with the message :


ffmpeg -i frame-%d.png -framerate 30 -c:v libx264 -crf 0 output.mp4
ffmpeg version N-97327-g05039c1334 Copyright (c) 2000-2020 the FFmpeg developers
 built with Apple clang version 11.0.0 (clang-1100.0.33.17)
 configuration: 
 libavutil 56. 42.102 / 56. 42.102
 libavcodec 58. 78.102 / 58. 78.102
 libavformat 58. 42.100 / 58. 42.100
 libavdevice 58. 9.103 / 58. 9.103
 libavfilter 7. 77.101 / 7. 77.101
 libswscale 5. 6.101 / 5. 6.101
 libswresample 3. 6.100 / 3. 6.100
Unrecognized option 'crf'.
Error splitting the argument list: Option not found



Why is crf unavailable ?


-
segment does not contain sync frame
15 janvier 2014, par jagslerWhenever I split a video using Apple's
mediafilesegmenter
, using the following command :medifilesegmenter video.ts -t 10
. I get the following error for each segment except the first :segment does not contain sync frame
Before splitting I've converted the .MP4 version to a .TS with the following command :
avconv -y -i video.mp4 -f mpegts -acodec libmp3lame -ar 48000 -ab 64k -s 640x480 -vcodec libx264 -b 64k -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -subq 7 -trellis 0 -refs 0 -coder 0 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -bt 200k -maxrate 64k -bufsize 64k -rc_eq 'blurCplx^(1-qComp)' -qcomp 0.6 -qmin 30 -qmax 51 -qdiff 4 -level 30 -aspect 640:480 -g 30 -async 2 sample_64.ts
Can anyone tell me why this error occurs ?
-
Include proper headers for sysctlbyname() on Mac OS
29 octobre 2015, par Thomas ZanderInclude proper headers for sysctlbyname() on Mac OS
According to Xcode documentation[1], sysctlbyname is available on
Mac OS via the same includes as on FreeBSD/DragonFly.Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>