
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 (106)
-
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 -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (13811)
-
Can't find ffmpeg with subprocess python in remote server [closed]
18 août 2021, par Castle EduI am using DigitalOcean Droplet on Ubuntu, I've downloaded ffmpeg to my remote server via
ssh
+sudo apt-get install ffmpeg


With
$ whereis ffmpeg
I've found that my ffmpeg is located in/usr/bin/ffmpeg
.

All code are in virtualenv and pushed and was working with git.


My web app needs to convert sample rate of received
audio/ogg
file.

command = [
 'ssh', 'root@ip-to-server',
 r'/usr/bin/ffmpeg', # path to ffmpeg
 '-i', in_filename,
 '-f', 'ogg',
 '-acodec', 'libopus',
 '-ar', '16000',
 '-'
 ]

 proc = subprocess.Popen(command, stdout=out_file)
 proc.wait()



This code return after audio request this message :


Host key verification failed.



I've tried to subprocess.Popen() without ssh line :


command = [
 r'/usr/bin/ffmpeg', 
 '-i', in_filename,
 '-f', 'ogg',
 '-acodec', 'libopus',
 '-ar', '16000',
 '-'
 ]

 proc = subprocess.Popen(command, stdout=temp_out_file)
 proc.wait()



But it returns : That there is no Such file or directory
/usr/bin/ffmpeg


I've tested same on my local computer, with path like
/User/Desktop/App-name/ffmpeg
. It runs correctly, so what's the problem ?

My questions are :


- 

- Where my code executes ? On my ubuntu remote server or ?
- How to subprocess correctly ? via ssh or not ?
- Which path should I point ?








-
How can I encode RGB images into HDR10 videos in ffmpeg command-line ? [closed]
5 juin 2024, par F.X.How can I encode HDR10 videos from RGB images using the ffmpeg command-line, with the proper color and luminance metadata ?


There are a lot of ffmpeg command-line examples floating around when searching information about how to encode HDR10 streams properly, but I didn't find any that has a comprehensive list of all the parameters you can tune when using RGB frames as inputs.


For example :


- 

- This article has a lot of information, but uses an existing video as input.
- Similarly, this article uses an existing video as input






-
FFMPEG & HW Acceleration Unable to find a suitable output format for 'cuda' ?
10 juillet 2022, par user2522885I'm curious about FFMPEG and GPU hardware acceleration. My Windows 10 system uses the Asus / nVidia GTX 760 graphics card and Intel i5-2500K CPU. My graphics card claims to be of the Kepler architecture with CUDA 3.0 as shown here.


Instead of going through the hassles of compiling FFMPEG with hw acceleration support i downloaded a pre-compiled binary from here and here.


Next, i tried running a test with hw acceleration options as recommended here :


ffmpeg -y -vsync 0 -i "input.mkv" -hwaccel cuda -hwaccel_output_format cuda -c:a copy -c:v h264_nvenc "output.mp4"



I then received the error message :




[NULL @ 000002257f4af540] Unable to find a suitable output format for 'cuda'


cuda : Invalid argument




What am i doing wrong ? For the record i install the CUDA setup file but it made no difference. I am using the latest nVidia drivers.


UPDATE


I modified the line to :


ffmpeg -y -vsync 0 -hwaccel cuda -hwaccel_output_format cuda -i "input.mkv" -c:a copy -c:v h264_nvenc "output.mp4" 



The new error message is :




[h264_nvenc @ 00000191f5c8d400] Lossless encoding not supported


[h264_nvenc @ 00000191f5c8d400] Provided device doesn't support required NVENC features Error initializing output stream 0:0 — Error
while opening encoder for output stream #0:0 - maybe incorrect
parameters such as bit_rate, rate, width or height