
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (98)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (12361)
-
lavfi/mp : try to pass interlaced & tff flags
22 mai 2013, par Paul B Mahol -
Revision 9f53661e8b : Merge "Fix another crash in vpxenc with —pass=1 and —test-decode." into experi
9 novembre 2012, par Ronald S. BultjeMerge "Fix another crash in vpxenc with —pass=1 and —test-decode." into experimental
-
How to pass BGR NumPy arrays directly to FFMPEG with CUDA support
4 juillet 2022, par Ξένη ΓήινοςI am using
cv2
to edit images and create a video from the frames with FFMPEG. See this post for more details.

The images are 3D RGB NumPy
array
s (shape is like [h, w, 3]), they are stored in a Pythonlist
.

Yep, I know
cv2
has aVideoWriter
and I have used it before, but it is very inadequate to meet my needs.

Simply put, it can only use an
FFMPEG
version that comes with it, that version does not support CUDA and uses up all CPU time when generating the videos while not using any GPU time at all, the output is way too big and I can't pass many FFMPEG parameters to theVideoWrite
initiation.

I downloaded precompiled binaries of FFMPEG for Windows with CUDA support here, I am using Windows 10 21H1 x64, and my GPU is NVIDIA Geforce GTX 1050 Ti.


Anyways I need to mess with all the parameters found here and there to find the best compromise between quality and compression, like this :


command = '{} -y -stream_loop {} -framerate {} -hwaccel cuda -hwaccel_output_format cuda -i {}/{}_%d.png -c:v hevc_nvenc -preset 18 -tune 1 -rc vbr -cq {} -multipass 2 -b:v {} -vf scale={}:{} {}'
os.system(command.format(FFMPEG, loops-1, fps, tmp_folder, file_name, quality, bitrate, frame_width, frame_height, outfile))



I need to use exactly the binary I downloaded and specify as many parameters as I can to achieve the optimal result.


Currently I can only save the arrays to a disk as images and use the images as input of FFMPEG, and that is slow but I need exactly that binary and all those parameters.


After hours of Google searching I found
ffmpeg-python
, which seems perfect for the job, and I even found this : I can pass the binary path as an argument to therun
function, this

import ffmpeg
import io


def vidwrite(fn, images, framerate=60, vcodec='libx264'):
 if not isinstance(images, np.ndarray):
 images = np.asarray(images)
 _,height,width,channels = images.shape
 process = (
 ffmpeg
 .input('pipe:', format='rawvideo', pix_fmt='rgb24', s='{}x{}'.format(width, height), r=framerate)
 .output(fn, pix_fmt='yuv420p', vcodec=vcodec, r=framerate)
 .overwrite_output()
 .run_async(pipe_stdin=True, overwrite_output=True, pipe_stderr=True)
 )
 for frame in images:
 try:
 process.stdin.write(
 frame.astype(np.uint8).tobytes()
 )
 except Exception as e: # should probably be an exception related to process.stdin.write
 for line in io.TextIOWrapper(process.stderr, encoding="utf-8"): # I didn't know how to get the stderr from the process, but this worked for me
 print(line) # <-- print all the lines in the processes stderr after it has errored
 process.stdin.close()
 process.wait()
 return # cant run anymore so end the for loop and the function execution



However I need to pass all those parameters and possibly many more to the process and I am not sure where these parameters should be passed to (where should
stream_loop
go ? What abouthwaccel
,hwaccel_output_format
,multipass
...?).

How do I properly pipeline a bunch of NumPy arrays to an FFMPEG process spawned by an binary that supports CUDA and pass all sorts of arguments to the initialization of that process ?