
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (39)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (3558)
-
YTDL-Core MP4 to MP3 doesn't work with FFMPEG (Code 101)
14 septembre 2018, par doamattoIn a simple YouTube downloader, I keep trying to get an MP4 to convert to an MP3 using FFMPEG/Fluent-FFMPEG (Fluent was used as recommened by the ytdl-core examples). However, both times resolve in one of two errors :
Cannot find ffmpeg
orcode: 101, msg: "The input file path must be a string"
I have updated the source to all be on GitHub (sorry for that slight inconvenience as opposed to it being here. It’s linked below. However, I have tried two things : using the normal "node-ffmpeg" library as the require for "ffmpeg", and using the "fluent-ffmpeg" library as the require for "ffmpeg." I mainly did this because via the ytdl-core uses such and I figured it may work in that case.
Thanks in advance and thanks as a whole !
The GitHub Repo : https://gist.github.com/Incrested/d9ef8125bd41afbb7e6720ec3a78e331
Once again : thanks for any and all assistance !
Edit : I’ve changed the URL to a better snippet of focus of where I think the issue is.
-
lavfi/qsvvpp : do not mix up FFmpeg and SDK error code
30 juillet 2021, par Haihao Xiang -
Convert webm to mp4 on with spawn ffmpeg on firebase cloud function returning failed with code 1
11 novembre 2022, par findevIn a google cloud function, i'm trying to convert a donwloaded .webm file from cloud storage to .mp4 format with this code


var mp4FilePath = path.join(os.tmpdir(), mediaId+'.mp4')
await spawn('ffmpeg', [
 '-i',
 downloadedFilePath,
 '-c copy',
 mp4FilePath,
]); 



I keep receiving the following error


Error: `ffmpeg -i /var/folders/h2/p35j0p3s4zq9ktyqhdx3qb9h0000gn/T/ghE1HQP1x9m2XLaxEx43_raw.webm -c copy /var/folders/h2/p35j0p3s4zq9ktyqhdx3qb9h0000gn/T/test.mp4` failed with code 1



I'm able to create thumbnails so the source file is downloaded correctly.