
Recherche avancée
Autres articles (46)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (7596)
-
Does the H.264 standard allow separate luma and chroma qp control in Baseline Profile ?
28 août 2013, par Bhaskar DeyAlthough the wikipedia article states that separate luma and chroma QP is only supported in High profiles, I didn't find any supporting reference. At least, Rec. ITU-T H.264 (04/2013) section A.2.1 does not mention any such limitation for the Baseline Profile.
Any comment in this regard would be of great help.
-
Recalculate cropdetect parameters from initial values
26 août 2020, par steviem1986I have a video that is 1920x1080, and cropdetect works great for this static size. My problem is that I am developing for the web, and I want to be able to re-calculate the best crop parameters when the window/video is resized.


Cropping the video, and running cropdetect each time the window is resized seems like overkill. Is there a way to do it from the initial cropdetect values and the resized video width+height ?


-
ffmpeg : zoom over a squared image
23 février 2017, par SulliI am using this command to create a zoom effect over a square image :
ffmpeg -r 25 -i image.jpg -filter_complex "scale=-1:10*ih,zoompan=z='min(zoom+0.0015,1.5)':d=125:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)',scale=-1:720" -y -shortest -c:v libx264 -pix_fmt yuv420p output.mp4
it works great, except the video is not squared at the end, it’s a regular 16/9. I tried to play with the scale parameter but the video becomes stuttered every time I change something.