
Recherche avancée
Autres articles (36)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6089)
-
facing problem in downloading the audio data of a trimmed youtube video using youtube-dl and ffmpeg libraries
15 mai 2022, par rkcI'm trying to download the audio content of a trimmed YouTube video using youtube-dl (v2021.12.17) and FFmpeg (v4.2.2) libraries in python, on Windows 10 PC. I am able to download the audio data when the command is executed on the Pycharm terminal, but not able to download the same content when using os.system() command.


For example, I'm able to download the data when I execute


"ffmpeg -ss 30 -t 10 -i $(youtube-dl -f best -g https://www.youtube.com/watch?v=3NGZcpAZcl0) -- output1.wav"



command on the Pycharm terminal.


But, i'm getting an error, when I try to execute the same in the Editor window as shown below,


os.system('ffmpeg -ss 30 -t 10 -i $(youtube-dl -f best -g https://www.youtube.com/watch?v=3NGZcpAZcl0) -- output1.wav')

error: $(youtube-dl: No such file or directory



I also tried enclosing the $() link in quotes and then executed it. But, after doing this, I am getting a different error as shown below


os.system('ffmpeg -ss 30 -t 10 -i "$(youtube-dl -f best -g https://www.youtube.com/watch?v=3NGZcpAZcl0)" -- output1.wav')

error: $(youtube-dl -f best -g https://www.youtube.com/watch?v=3NGZcpAZcl0): Invalid argument



So, can any of you help me in resolving this error ?


-
How to use youtube-dl inside ffmpeg
3 décembre 2022, par Dương Phương NamI tried to record a live stream video by this code. I add that code inside render.cmd



ffmpeg -i $(youtube-dl -f 95 -g https://www.youtube.com/watch?v=v2_knJ1RwlQ) -c copy render.ts



but i got this error $(youtube-dl : No such file or directory



anyone help me please


-
How to make robotic voice use ffmpeg
8 août 2018, par Cuong PhamI can easily create it by using Vocoder option of Audacity software follow the video : https://www.youtube.com/watch?v=dXNrWrxIaRE&t=151s , but I want to make robotic voice from audio file by ffmpeg , Ffmpeg is realy big library so it’s hard for me. please help me !