
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (63)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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" (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (9889)
-
ffmpeg rotate, trim, and crop video
1er novembre 2017, par 1234567ffmpeg rotate, trim, and crop video
I am trying following command
"-y", "-i", j, "-ss",15, "-t", 40
,"-filter_complex", "transpose=1,crop=" +
40 + ":" + 20 + ":" + 100 + ":" + 100, "-c:a", "copy", "-preset", "ultrafast",outthis command works but creates a black video
If remove the transpose from command it works fine
second part is I want to remove a part of video and rotate and crop that video
for example in a video of 1 min 25 seconds and i want to remove a part from 40-50 sec I am trying this command
"-y", "-i", j,
"-filter_complex", "transpose=1," +
"[0:v]trim=start=40:end=50,setpts=PTS-STARTPTS[b];" +
"[a][b]concat[c];[c][d]concat[out1]" +
"crop=" + 40 + ":" + 20 + ":" + 100 + ":" + 100,
"-c:a", "copy", "-preset", "ultrafast",outthe error for this is
too many input specified for the trim filter
I have referred this question for removing middle part of video
https://superuser.com/questions/681885/how-can-i-remove-multiple-segments-from-a-video-using-ffmpeg -
FFmpeg - What does non monotonically increasing dts mean ?
24 mars, par Mukund ManikarnikeObservations - Part - I



I saw a suggestion elsewhere to run the following command to see if there's something wrong with my .mp4.



ffmpeg -v error -i ~/Desktop/5_minute_sync_output_15mn.mp4 -f null - 2>error.log




When I run the above command, I see a whole bunch of the logs on the lines of what's shown below.





Application provided invalid, non monotonically increasing dts to
 muxer in stream 0 : 15635 >= 15635





This, from searching and reading up quite a bit, I understand that the decoding timestamp isn't in sequential order.



Observations - Part II



But, inspecting the frames of the same mp4 using the following command and some post processing, I don't see
pkt_dts
within the frames_info json being out of order for either of the video or audio streams.


ffprobe -loglevel panic -of json -show_frames ~/Desktop/5_minute_sync_output_15mn.mp4




This makes me doubt my initial understanding in Observations - Part - I



Are these 2 things not related ?
Any help on this will be greatly appreciated.


-
Split filiename with ffmpeg and reverse order
28 septembre 2020, par soboI reverse video files in a batch using ffmpeg.


What I would like to do now is :


- 

- Reverse only the files with a "-" in the name.
- Rename these files by swapping the part before "-" with the part after it. Like "abc-def" becomes "def-abc".






Any ideas ?


Thanks !


UPDATE :


Sorry for the wrong title/topic. Am I supposed to create a new post ? Or edit the title ?


I tried the following now to find the files. For some reason it always succeeds, no matter which name :


for %%a in ("videos/*.mp4") do (
 echo %%a|find "-" >nul
 if %errorlevel%==0 (
 echo found
 )
)