
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (23)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (5617)
-
Linux : Create a file for writing with controlled flushing to disk in large chunks [closed]
12 août 2023, par PeteOn Linux I have a process (ffmpeg) that writes very slowly (even slower than 1kb / s sometimes) to disk. Ffmpeg can buffer this to 256kb chunks that get written infrequently but ffmpeg hangs occasionally and if I try to detect these hangs by checking that the file is being updated I need to wait a long time between updates, up to 10 or 15 mins, otherwise I can sometimes mistakenly kill the ffmpeg process when it appears to have stopped writing when it fact its still filling its internal buffer.


Theres no way to detect this it seems unless I use strace (that I can find anyway). So I am wondering about turning off buffering in ffmpeg and writing unbuffered to disk from ffmpeg.


This will result in the disk constantly making tiny writes and wasting power (and probably, if I use a SSD, mess with wear levelling too).


So I would like to make ffmpeg write to a 'virtual file' (in memory - either kernel memory or a process) which I can specify the flushing characteristics of. The idea being to perhaps specify flush every 2 minutes, then I can keep an eye on the file size and make sure its still being written.


I don't think I've missed any other ways to do this job - even if I could watch the socket stream incoming to ffpmeg the process itself could still stop writing and lose data. Doing the buffering outside of ffmpeg seems like the best way.


Is there a built in way to do this in Linux or does it mean a custom process ? I guess I know how to do this with a small C program and pipe the data in but I wonder if theres a neater way.


-
How to use the hardware acceleration for ffmepg on m1-max ?
10 février 2023, par ThoughtfulHackingSince there aren't m1 builds available from ffmpeg.org, I had to compile my own. Obviously, I'd like to get the best possible performance.


- 

- Does ffmpeg use the "Hardware-accelerated H.264" on the m1 max ?
- Is there anything I need to do, like compiler flags, to get it ?
- Any switch at run time ?
- How can I verify that it's being used ?










To compile ffmpeg, I just did the basics :


./configure --prefix=/tmp/ff --enable-gpl --enable-nonfree --enable-libx264
make
make install



For x264, I just did
./configure —prefix=/tmp/ff
make
make install


to run :


ffmpeg -i random.wmv -c:v libx264 -preset ultrafast -c:a aac output-ultra.mp4 



Anything else I should be doing ?


-
FFMPEG : Video has same Dimensions even after Crop
8 juin 2021, par Raj DhakadI am using FFMPEG to do dynamic crop in a video.


The problem is, If I crop a 1920x1080 video to 100x100 am still getting a 1920x1080 video with only 100x100 part visible and other part tuned to green.


_flutterFFmpeg.execute('-y -i $input -filter_complex "[0:v]sendcmd=f=$txtFile,crop" $output'); 



txtFile :


0 crop w 100, crop h 100, crop x 10, crop y 10;
1 crop w 100, crop h 100, crop x 10, crop y 10;
2 crop w 100, crop h 100, crop x 10, crop y 10;
3 crop w 100, crop h 100, crop x 10, crop y 10;
4 crop w 100, crop h 100, crop x 10, crop y 10;
5 crop w 100, crop h 100, crop x 10, crop y 10;
6 crop w 100, crop h 100, crop x 0, crop y 0;
7 crop w 100, crop h 100, crop x 0, crop y 0;
8 crop w 100, crop h 100, crop x 0, crop y 0;
9 crop w 100, crop h 100, crop x 0, crop y 0;
10 crop w 100, crop h 100, crop x 0, crop y 0;
11 crop w 100, crop h 100, crop x 0, crop y 0;



The output Video File :
https://drive.google.com/file/d/10mjY9toRoMmlvazD6m57gIiuJa8Sqjki/view?usp=sharing


As you see, the Output contains Green Sides for the first 5 seconds and the rest of the video is not cropped at all.