
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 (44)
-
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
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 (...)
Sur d’autres sites (11129)
-
How to scale watermark based on video resolution in android using FFmpeg command ?
16 février 2023, par Ravi SorathiyaI want to scale the watermark size based on the given video resolution. but this cmd scales the watermark without respect to the original video.


I want to scale the watermark based on the resolution of the video. if
the video is in high resolution then the watermark will adjust that accordingly. visa versa in lower resolution it will scale accordingly.


please suggest me FFmpeg cmd the dynamically cmd that helps to scale the watermark based on video's resolution


val cmd = arrayOf(
 "-y",
 "-i",
 sourcePath,
 "-i",
 watermarkImagePath,
 "-filter_complex",
 "[1][0]scale2ref=w=oh*mdar:h=ih*0.06[logo][video];[video][logo]overlay=${position}",
 "-map",
 "0:a",
 "-c:v",
 "libx264",
 "-crf",
 "$bitrate",
 "-preset",
 "ultrafast",
 outputLocation.path
 )



-
ffmpeg scaled output resolution is off by 1px for non-standard inputs [duplicate]
14 janvier 2023, par GROVER.I'm using the
ffmpeg
CLI to scale user-submitted videos :

ffmpeg -i path/to/file -vf scale=1920:-2 -c:v libx264 -r 30 output.mp4



The scaling works fine with standard video sizes, such as
1920×1080
and720×480
. However, once we start using videos that do not have conventional resolutions, the output begins to scale incorrectly.

For example, a video that has a resolution of
3360×1882
will output to1921×1076
, when the expected resolution should theoretically be :1920×1075
.

Now, obviously
ffmpeg
is attempting to account for that remaining.42857px
on the height, but I'd prefer it just get cropped off instead (doesn't matter if it's from the top or bottom).

How would I go about doing this safely for every video ?


For bonus points, how do I make it swap scaling depending on if the
height
is greater than thewidth
(and vice versa). For example, if the video has a ratio of2:1
, it scales using a height of1080px
instead of a width of1920px
.

-
How to stich images into a video with resolution larger then 4K using FFMPEG ?
14 janvier 2023, par Aviram FirebergerI have a folder with images that I've extracted from one video.
The resolution for each image is 5760 X 2880.
All images are in the following format :
out-1.jpg, out-2.jpg , out-3.jpg ..... out-1000.jpg


I tried couple of different ways to stich them :


Using CPU - libx264


ffmpeg -r 30 -f image2 -s 5760X2880 -start_number 1 -i "AllFrames/out-%d.jpg" -vframes 119 -vcodec libx264 -crf 25 -pix_fmt yuv420p "/AllVideoChunks/Chunk_1.mp4"



Worked well but the speed is about X0.05 only.


Using GPU - h264_nvenc


ffmpeg -r 30 -f image2 -s 4000X2000 -start_number 1 -i "AllFrames/out-%d.jpg" -vframes 119 -vcodec h264_nvenc -gpu 0 -preset slow -b:v 75M -pix_fmt yuv420p"/AllVideoChunks/Chunk_1.mp4"



Working very fast and high quality, but the problem is that I can't use it for images and output bigger then width 4096


Using GPU - hevc_nvenc


ffmpeg -r 30 -f image2 -s 5760X2880 -start_number 1 -i "AllFrames/out-%d.jpg" -vframes 119 -vcodec hevc_nvenc -gpu 0 -preset slow -b:v 75M -pix_fmt yuv420p"/AllVideoChunks/Chunk_1.mp4"



Working X10 more then the CPU at the speed of X0.5, good quality, but the problem is that I can't use it in normal players (can't play it in Unity)


Is there another video codec that can work on GPU that support more then 4K resolution ?
Can I transform the 'hevc_nvenc ' output to 'h264' on GPU in higher resolution ? should I do this transformation on CPU ?