
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (6)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4136)
-
Convert a video file to an image sequence of equal length ?
1er mars 2017, par JeremyHow using FFMPEG do I convert a video file to a sequence of images that is equal in duration/frames to the original video file ?
I’m trying to import video into the non comercial version of Nuke on Linux which refuses to accept h.264 and doesn’t have handy a list of accepted codecs that I can find...but plays nice with images sequences...but I can’t get the sound to line up with the image sequence.
I tried getting a look at the framerate with :
ffprobe -v 0 -of compact=p=0 -select_streams 0 -show_entries stream=r_frame_rate Forest.mp4
which returns :
r_frame_rate=30/1
and then I run
ffmpeg -i Forest.mp4 -r 30/1 forest/jpegs%06d.jpg
-
Convert a video file to an image sequence of equal length ?
5 janvier 2024, par JeremyHow using FFMPEG do I convert a video file to a sequence of images that is equal in duration/frames to the original video file ?



I'm trying to import video into the non comercial version of Nuke on Linux which refuses to accept h.264 and doesn't have handy a list of accepted codecs that I can find...but plays nice with images sequences...but I can't get the sound to line up with the image sequence.



I tried getting a look at the framerate with :



ffprobe -v 0 -of compact=p=0 -select_streams 0 -show_entries stream=r_frame_rate Forest.mp4 




which returns :



r_frame_rate=30/1




and then I run



ffmpeg -i Forest.mp4 -r 30/1 forest/jpegs%06d.jpg



-
How can I construct an mp4 with 6 equal audio channels (not 5p1) from an mp4 and a 6 channel wav
6 août 2021, par ncvpOS is Ubuntu Linux.
I start with xxx.webm with picture and synced mono sound.
I construct the 6 channel xxx.wav which has the sound from xxx.webm moved to the 6 channels as appropriate.


% ffmpeg -i xxx.webm -i xxx.wav -map 0:v -map 1:a yyy.mp4


makes the synced yyy.mp4 with 6 audio channels, but the soundtrack is 5p1. Channel 4 is low-pass filtered. This is not what I want.


% ffmpeg -i xxx.webm -i xxx.wav -map 0:v -map 1:a -channel_layout 6.0 yyy.mp4


is an improvement. Channel 4 is not low-pass filtered and it plays perfectly in ffplay and mplayer, but not VLC player.


It turns out there is no channel-layout in yyy.mp4, so there must be something wrong with my
-channel_layout 6.0
.

Any suggestions, please ?