
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (97)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (11393)
-
Revision 7e234b9228 : Revised rd adjustment for variance. Revised adjustment for rd based on source c
18 mars 2015, par paulwilkinsChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Modify /vp9/encoder/vp9_rdopt.c
Revised rd adjustment for variance.Revised adjustment for rd based on source complexity.
Two cases :1) Bias against low variance intra predictors
when the actual source variance is higher.2) When the source variance is very low to give a slight
bias against predictors that might introduce false texture
or features.The impact on metrics of this change across the test sets is
small and mixed.derf -0.073%, -0.049%, -0.291%
std hd -0.093%, -0.1%, -0.557%
yt +0.186%, +0.04%, - 0.074%
ythd +0.625%, + 0.563%, +0.584%Medium to strong psycho-visual improvements in some
problem clips.This feature and intra weight on GF group length now
turned on by default.Change-Id : Idefc8b633a7b7bc56c42dbe19f6b2f872d73851e
-
Use pkgConfig in CMakeLists.txt for FFMPEG
10 avril 2018, par Pierre P.Following the answer to this question which solves the linking issue that arise when trying to use the FFmpeg C API within a C++ project, I need to transpose the actual solution to a CMakeLists.txt file.
The solution is to add an instruction to the compile command, which yields
g++ readVideo.cc -o readVideo $(pkg-config --libs --cflags libavformat)
However, I don’t know how to transpose the
$(pkg-config --libs --cflags libavformat)
in CMakeLists.txtCurrently, my CMakeLists.txt looks like this
cmake_minimum_required(VERSION 3.9)
project(screencaps)
set(CMAKE_CXX_STANDARD 14)
find_package(PkgConfig)
add_executable(screencaps main.cpp)How can I reproduce the compile option in my case ?
-
stitching two videos into one using FFMPEG
30 juillet 2015, par nikhil khareI am using FFmpeg to concatenate two videos. I use demuxer option like this.
Created a file using following text.file '/var/www/html/test/input/video1.mp4'
file '/var/www/html/test/input/video2.mp4'The codec, bit-rate and aspect ratio are same for both the videos. Now I use this command to generate the output
ffmpeg -f concat -i mylist.txt -c copy merged.mp4
It creates the output file with merging the videos but, when i position the seek button to any time it stops playing. The total video duration is also a lot more than the actual video duration.
It also does not show the second video after the first video is finished. It keeps the last frame through out the video.
I have found somewhere to mention the duration in the text file, but I am not able to implement it. Please help.