
Recherche avancée
Autres articles (102)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)
Sur d’autres sites (6525)
-
How can I remove “original display aspect ratio 16:9” from a mp4 file using ffmpeg ?
21 juin 2020, par Михаил БурдI wish to remove the
Original display aspect ratio
entry from the video section.

Video
ID : 2
Format : DV
Format settings, wrapping mode : Frame
Codec ID : 0D01030102020201-0401020202010200
Duration : 1 h 34 min
Bit rate mode : Constant
Bit rate : 24.4 Mb/s
Width : 720 pixels
Height : 576 pixels
Display aspect ratio : 4:3
Original display aspect ratio : 16:9
Frame rate mode : Constant
Frame rate : 25.000 FPS
Standard : PAL
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Interlaced
Scan order : Bottom Field First
Compression mode : Lossy
Bits/(Pixel*Frame) : 2.357
Time code of first frame : 00:00:00:01
Time code source : Subcode time code
Stream size : 16.1 GiB (76%)
Title : Picture
Color range : Limited
Transfer characteristics : BT.601



If I want to remove the
Original display aspect ratio
entry completely, what ffmpeg command can I use to achieve that ?
Thank you.

-
Referencing original Height and Width of input
10 septembre 2022, par SarkBy combining scaling and cropping, the example script below scales/crops 30 pixels from each side of the input with the minimum loss of image.


In this example, 720 (original height) must be explicitly stated for the crop. If I use
ih-60
instead of720-60
, ih will reference the height after the scale filter has been applied, not the original height of the source.

Is it possible to ignore the scale filter (and any other filtering) when referencing height and width.


ffmpeg -i 1.mp4 -filter_complex [0]scale=iw-60:-1[S];[S]crop=iw:720-60 out.mp4



-
FFmpeg HLS save original timestamps
11 juillet 2016, par Ivan KolesnikovI transcoding a video to HLS and everything works fine with the following command :
ffmpeg -i source -vcodec nvenc -acodec copy -f ssegment -segment_list playlist.m3u8 -segment_list_flags +live -segment_time 60 -segment_list_size 10 out%03d.ts
But when I want to save an original timestamps and add -copyts key to my commnad then I received new .ts file each 0.7 seconds(but I set it to 60 seconds -segment_time 60).
How can I save an original timestamps with transcoding to HLS ?UPDATE : I tried this command and timestamps are saves fine :
ffmpeg -i source.ts -vcodec nvenc -acodec copy -f hls -hls_time 10 -hls_list_size 5 -copyts playlist.m3u8
But when I trying run this command for RTP input stream then I receive the following error : "Error while opening encoder for output stream #0:2 - maybe incorrect parameters such as bit_rate, rate, width or height".