
Recherche avancée
Autres articles (50)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...)
Sur d’autres sites (6071)
-
Problem of video duration with a mp4 file
7 avril 2023, par user1018697I have a video file with a duration of 1:24.
I tryed to edit the file with adobe premier 2023 and the duration of file read is 1:14...
Framerate of the video is 24 i/s, i tryed to change to 30 i/s with ffmpeg but the problem persists.


I share the file here :
https://drive.google.com/file/d/1A2DxqJL7whGRrRraeCuyaJ46mAra1n81/view?usp=share_link


If you try to edit the file on the adobe public website, you can reproduce it :
https://express.adobe.com/fr-FR/tools/merge-videos


Can anyone helps me ?


-
file decoded with ffmpeg has different CRC to file decoded with flac.exe
17 mars 2020, par CdizzleDecoding the same .flac file (24-bit/48khz, 5.1 audio) with flac.exe, and then decoding the same .flac with ffmpeg results in two .wav files that have different CRC-32 values.
Command for decoding with flac.exe :
flac -d input.flac
Command for decoding with ffmpeg :
ffmpeg -i input.flac -c:a pcm_s24le output.wav
Both of the resulting flac files are 24-bit signed little endian PCM files, at 48khz. Both are the exact same size on disk, but they do not have the same CRC-32 values. What am I doing wrong ?
OS : Windows 10 1909
flac version : 1.3.2
ffmpeg build : ffmpeg-20200312-675bb1f-win64-static
-
Limit file size in FFmpeg
26 novembre 2019, par AreteThe official documentation for FFmpeg says :
-fs limit_size (output)
Set the file size limit, expressed in bytes. No further chunk of bytes is written after the limit is exceeded. The size of the output file is slightly more than the requested file size.
This is very confusing. If the file size is slightly more than the requested file size then I have the following questions :
-
What determines how much more (than the requested file size) the file will consume ?
-
How much more will the file exceed the requested file size ?
-
Is there any way to set the file size exactly ?
-
What is the point of having the
-fs
if it does not actually work ?
-