
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (77)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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
Sur d’autres sites (12017)
-
Move all files from a folder EXCEPT those still in use (by other processes like ffmpeg)
9 janvier 2019, par juzzleI am cleaning up a series of MP4 files using FFMPEG. I want to create a simple bat file script which moves the completed files (which are those which have a duration value), not the stubs of files in progress. This is the basic structure :
set SourcePath=C:\Source Folder
pushd %SourcePath%
move *.MP4 C:\Finished FolderWhat options are available to use in the MOVE command to supress the moving of those files still in use by FFMPEG ?
I did consider Robocopy’s /minage or /minlad option for this, but the minimimum incremenent is DAYS, not seconds.
-
FFmpeg : Issues for Transparent Background in WebM Video [closed]
20 juillet 2024, par BlueSkyI've encountered an issue while processing videos with FFmpeg. I want to convert a MOV video with an alpha channel to WebM format and overlay it onto a main video. Below are the steps I took and the problem I encountered.


I used Adobe After Effects (AE) to remove the green screen background from a video and exported the MOV file with RGB+Alpha channels using the Animation codec. Additionally, I tried exporting in QuickTime format, both ensuring the alpha channel was included.


When converting the MOV video to WebM format, I executed the following command :


ffmpeg -i input.mov -c:v libvpx-vp9 overlay.webm



Then, I attempted to overlay the converted WebM video onto the main video
main.mp4
using the following command :

ffmpeg -i main.mp4 -vf "movie=overlay.webm,scale=200x200[video_inner];[in][video_inner]overlay=x=10:y=10[out]" output.mp4



However, in the final
output.mp4
video, the background of the WebM video was not transparent as expected, but instead showed a black background after removing the green screen.

Could there be an error in one of my steps ?


I have tried different command parameters and options but have not been able to resolve this issue.


I expected the WebM video to retain its transparent background when overlaid onto the main video. However, the resulting output.mp4 video showed the background of the WebM portion as black instead of transparent.


-
Python convert audio files to MP3
19 janvier 2015, par Fernando RetimoI’m trying to write a small utility that get as input an m4a/ogg file and converts it to a MP3 audio file.
My main goal is not to use any third party binaries such as ’Lame’ or ’ffmpeg’.
I read allot about PyMedia and such, but my knowledge on audio codecs is very poor.
Can any one help me and give me an elegant cross platform solution ?
Thanks !EDIT :
meanwhile I know it is very basic but this is my code :import sys
def convert2mp3(input_file):
.....
some magic...
...
return mp3file
if __name__ == "__main__":
if len(sys.argv) != 2:
print "%prog Usage: %s <input file="file" />"
sys.exit()
convert2mp3(sys.argv[1])