
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (25)
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (4349)
-
FFmpeg - Change resolution of the video with aspect ratio
10 août 2016, par Arthur Khusnutdinovall.
How to change resolution of the video with aspect ratio with FFmpeg ?
There are options
http://manpages.ubuntu.com/manpages/oneiric/man1/ffmpeg.1.html-s size
Set frame size. The format is wxh (ffserver default = 160x128,
ffmpeg default = same as source). The following abbreviations are
recognized:and
-aspect aspect
Set the video display aspect ratio specified by aspect.
aspect can be a floating point number string, or a string of the
form num:den, where num and den are the numerator and denominator
of the aspect ratio. For example "4:3", "16:9", "1.3333", and
"1.7777" are valid argument values.For example, I have two input videos :
- with 200*400 resolution
- with 400*700 resolution
I need to make output video with 100*200 resolution.
If I will run ffmpeg with -s 100x200, then second video will have bad aspect ratio.
How can I limit output video by width, with auto aspect ratio by height ?
For example, I want specify for the output video only width 100px and ffmpeg must automatically calculate height with right aspect ratio.
For first video it will be :
200/100=2
400/2=200
Ie 100x200
For second video it will be :
400/100=4
700/4=75
Ie 100x75
Is it possible ?
-
ffmpeg thumbnails with exact size main aspect ratio [migrated]
31 mai 2013, par diogopmsHi need to get one thumbnail with resolution 560x420.
I'm using this command :
ffmpeg -i "file.mp4" -vf "scale=560:-1,pad=max(iw\,ih):420:(ow-iw)/2:(oh-ih)/2" \
-frames:v 1 best.pngThis command works..any other alternative ?? the image cannot be deformed.
-
How do I extract parts of a video with a specific aspect ratio with ffmpeg or mencoder ? [on hold]
26 juin 2013, par MinecraftBhilI've got some recordings from TV. The movies are all in 4:3 but the advertisement is in 16:9. My input format is a mpeg 2 transport stream. I would like to convert my movies to mp4 with h264 video and aac audio but delete all frames from the video with 16:9 aspect ratio. The sound should also be deleted at the matching frames.
Converting mts to mp4 is easy with ffmpeg but how do I extract the frames with 4:3 aspect ratio ?converting mts to mp4 :
ffmpeg -i input.mts -b:v 6000k -b:a 256k -vcodec libx264 -acodec aac -o output.mp4
I'm under a gentoo linux with ffmpeg version 0.10.3 and MEncoder 1.1-4.5.4