
Recherche avancée
Autres articles (83)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (12026)
-
How to override memory access functions (malloc, realloc etc) in libavformat with my own custom functions
17 août 2020, par java_geekI am using libavformat-dev package to get some media file properties like bitrate, duration etc. However, I want to use my custom malloc, calloc, realloc functions in place of the system functions that libavformat uses. Is there a way of registering my custom functions in libavformat ?


-
ffmpeg works as a root but not as a user
19 mars 2015, par ayanAs root user I can run any ffmpeg command fine and it will work but trying to run it as the user ’adinvideo’ like so, I get :
-bash: ffmpeg: command not found
when I check the permissions I found this
root@ado.XXXX.com [~]# ls -l ffmpeg
total 1516
-rw-r--r-- 1 root root 148691 Mar 19 08:14 ffmpeg.c
-rw-r--r-- 1 root root 16152 Mar 19 08:14 ffmpeg.h
-rw-r--r-- 1 root root 133904 Mar 19 08:14 ffplay.c
-rw-r--r-- 1 root root 117447 Mar 19 08:14 ffprobe.c
-rw-r--r-- 1 root root 124672 Mar 19 08:14 ffserver.c
drwxr-xr-x 5 root root 4096 Mar 19 08:14 tests/
drwxr-xr-x 2 root root 4096 Mar 19 08:48 tools/
-rwxr-xr-x 1 root root 1866 Mar 19 08:14 version.sh*Advance thanks for any help
-
Force x264 to only use long term reference frames
12 décembre 2019, par cloudravenI want to generate a h.264 stream in which P-frames are using references exclusively using long-term references identifiers rather than defaulting to a short-term reference given by the previous frame.
At this point this is an academic experiment to understand the encoding behavior of long-term references and the consequences of forcing frames to refer to a specific frame rather than several.
It would be great if I could do this from the command line, but if not possible I am open to modifying x264 for this purpose.
Could anyone point me to where in the source code it is determined :
- the reference frame / macroblock / partition for the current macroblock
- changes made to the short term, long term reference frame list
- whether to use a short term reference frame or a long term reference frame.
Using another encoder like nvenc is also acceptable.