
Recherche avancée
Autres articles (25)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (5373)
-
avcodec/libx265 : improve full range flag setting logic
17 août 2021, par Jan Ekströmavcodec/libx265 : improve full range flag setting logic
Unlike libx264, libx265 does not have a separate "unspecified"/"auto"
default for color range, so we do always have to specify it.
Thus, we are required to handle the RGB case on the libavcodec
side to enable the correct value to be written out in in case
of RGB content with unspecified color range being received.In other words :
1. If the user has set color range specifically, follow that.
2. If the user has not set color range specifically, set full
range by default in case of RGB and YUVJ pixel formats. -
ffmpeg - different video and audio length synchronization
4 mai 2020, par Halil Han BademI have a task where the sound is longer and the image should come later.
Actually, this is exactly what I want, but it's a bit different : ffmpeg : mix audio and video of different length



First of all, I leave the picture I draw below to be understood.
Click to see the image.



By doing this I am thinking of catching sync. With which ffmpeg command can I do this ?
Thank you.


-
MediaConvert split video into multiple chunk but in different duration length
12 novembre 2020, par SandipI have one video with 1 hr time.


i want to chunk in different part by specified range.


ex :


- 

- 0 to 10 min
- 10 to 40 min
- 40 to 60 min








I know it is possible by ffmpeg but i want to do this with MediaConvert.


here is sample for ffmpeg but same thing i want do using MediaConvert


ffmpeg -i input.mp4 -c copy -f segment -segment_times 0,600,2400 output%d.mp4