
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (25)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (4298)
-
Console windows displayed during python script execution [closed]
15 janvier 2020, par vivitarei’m trying to create a Youtube converter with python and Tkinter.
The problem is during the conversion with ffmpeg encoder, a console appear. But I don’t want to display her.Windows console displayed during encoding with ffmpeg
Is there a parameter or something like that to disable this console ?
I’m using this code to launch dowlnoad and youtube-dl do the rest :
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
'logger': MyLogger(),
'progress_hooks': [my_hook],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(['https://www.youtube.com/watch?v=BaW_jenozKc']) -
How to create a FFMPEG VIDSTAB batch script Windows
2 octobre 2019, par esdoublelefi’m a photographer and I download photographs (.jpg) and videos (.mov) into a single Windows folder
I’m looking to create a script that will run the below 3 lines of FFMPEG for every instance of .mov in the folder and let it create stabilized .mp4 copies of the video. I’ll delete the originals manually later.
ffmpeg -i DSCF0229.MOV -vf vidstabdetect=shakiness=5:accuracy=15:stepsize=6:mincontrast=0.3:show=2 -y dummy.mp4
ffmpeg -i DSCF0229.MOV -vf scale=trunc((iw*1.15)/2)*2:trunc(ow/a/2)*2 -y scaled.mp4
ffmpeg -i scaled.mp4 -vf vidstabtransform=smoothing=30:input="transforms.trf":interpol=linear:crop=black:zoom=0:optzoom=1,unsharp=5:5:0.8:3:3:0.4 -y DSCF0229stabilized.mp4i can tweak a bit of code, but i’m clueless on where to start. i tried "for do" and even a batch.bat file, but i just can’t get the proper syntax right.
really appreciate any help here !!
-
ffmpeg command not working with Windows XP when files have spaces
25 février 2014, par user1665130I have a wpf application program for video audio merging using a command line tool ffmpeg.
I can successfully merge files in Windows 7. But when I try to run my program on Windows XP it shows errors.Here I include my command line code.
ffmpeg -i C:\Users\vishnu.aravind\Desktop\SUNP.AVI -i C:\Users\vishnu.aravind\Desktop\Alarm03.wav -c:v copy -c:a aac -strict experimental C:\Users\vishnu.aravind\Desktop\ Vishnu Aravind\new.avi
I made some research on this and i find out that if the input filenames and output filenames contain extra spaces in them, normally ffmpeg won't take it. Suppose if I edit my above code to
ffmpeg -i C:\Users\vishnu.aravind\Desktop\SUNP.AVI -i C:\Users\vishnu.aravind\Desktop\Alarm03.wav -c:v copy -c:a aac -strict experimental C:\Users\vishnu.aravind\Desktop\VishnuAravind\new.avi
this will successfully execute.
How to solve if I want the output to be saved to a folder whose folder name contains an extra space ?