
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (78)
-
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 -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (12186)
-
How to get around "FFmpeg cannot edit existing files in-place." [closed]
30 août 2021, par owcsI am running a batch script to process some files using FFmpeg. I want the output file to replace the input file but this is not possible. I'm looking for a way to get around this. I assume this can be done by appending something for the output filename, deleting the input file, then renaming the output to be the same as the original input. I'm not very familiar with the command line or batch scripts. The current script is :


for %%a in (*.mp3, *.flac) do ffmpeg -i "%%a" -filter_complex "channelmap=map=FL-FR|FR-FL:channel_layout=stereo" "%%a"



-
Mixing an audio and video file together using FFMPEG causes desync [closed]
15 août 2021, par iza-iniPremiere Pro won't render properly, so I've let it render the m4v and aac files then combine them using ffmpeg.


ffmpeg -i "MCU- Supercut P1.24076.65056.m4v" -i "MCU- Supercut P1.24076.65056.aac" -c copy "MCU-Supercut-P1-FINAL.mp4"



This works but the audio desyncs from the video. I assume this is because the video doesn't have a listed length in the metadata, I know the length of the video but I'm not sure how to make ffmpeg follow that.


-
Encoding a live stream of bitmaps using FFMPEG
1er avril 2015, par user3088260I’ve got a constant stream of jpeg’s that need to be converted to a video (of any kind).
The problem is that the stream is virtually infinite and I don’t know any method of creating videos using pictures that doesn’t store the whole file in memory until the stream stops..Is there a way that I can feed FFMPEG with bitmaps or jpegs constantly from c# or at least make ffmpeg read images from a folder with +432000 images (on the command line) ?
Please note that there will be no sound, the images will be low quality, they will come at a rate 5 FPS and this will run on a high-ish end laptop. BTW I can provide code but I assume this is unnecessary at the moment as I am only creating bitmaps and saving them.