
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (65)
-
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.
Sur d’autres sites (5811)
-
How do I reverse a video in ffmpeg ?
19 avril 2023, par Will Beeson- Full Error :


Stream specifier 's1:v' in filtergraph description [0]split=2:outputs=2[s0][s1] ;[s1:v]reverse[s2] ;[s0][s2]concat=a=0:n=2:v=1[s3] matches no streams.


- Formatted Error


- 

- [0]split=2:outputs=2[s0][s1] ;
- [s1:v]reverse[s2] ;
- [s0][s2]concat=a=0:n=2:v=1[s3]








- Code :


instances = (
 ffmpeg
 .input(self.video_file)
 .filter_multi_output(filter_name="split", outputs=2)
)
ordered_edits = []
for i in range(2):
 if i%2 == 0:
 ordered_edits.append(
 instances[i]
 )
 else:
 ordered_edits.append(
 instances[i].video.filter(filter_name="reverse")
 )
(
 ffmpeg
 .concat(*ordered_edits, a=0, v=1)
 .output('done/output.mp4')
 .run(overwrite_output=True))



Looking at the error code, it seems like s1:v should be a valid reference. The only thing I can think of is that there is an issue saving an exclusive video input into a nonspecified output. The files don't actually have any audio, I just want the video.


I'm lost, please help ffmpeg experts of the world !


-
How can I download a video with url beginning with blob:https://…
11 août 2017, par iMaxI would like to know if it is possible to download a video from a URL beginning with blob :
blob:https://www.xyz123…
i would prefer a terminal solution (ffmpeg ?, youtube-dl ?). but i have not found anything on the world wide web.
Again : I have the url of the video stream, which looks like the above. How can I download the complete video ?
Update
Ok. I now found a webpage which allowed me to download the video file I wanted :
https://video-download.online/But I am still wondering if there is a Terminal solution for downloading video with blob-URL (like in arte mediathek [ example arte ] or in zdf mediathek [ example zdf ]).
Does nobody know how to do it ?
-
ffmpeg : Dynamically set output duration based on sliding text width
18 janvier 2016, par John WhitemanI need to create a smooth ’news ticker’ on a low powered android device. Unfortunately this is impossible at runtime using HTML or native code as there is always some stutter or glitch.
I’ve created a solution that gives me a smooth result by encoding an mp4 for each message and displaying one video after the other. This is the code I’m using :
ffmpeg -f lavfi -i color=c=black:s=1280x100 -vf "drawtext=BebasNeue.otf:fontsize=60:fontcolor=white:y=h-line_h-30:x=-(4*n)+1280:text='Hello world'" -t 10 output.mp4
Problem :
I need to set the video’s duration dynamically so that the video stops when the text has completed it’s journey from right to left. The messages will be of varying lengths and I need each message to scroll at a constant speed (ie. an mp4 with a longer message would have a longer duration).Is this possible via an expression ? If not is there some clever way I can calculate this outside of ffmpeg and pass it to the ’-t’ (duration) parameter ?
** Edit **
To calculate outside of ffmpeg I can do a calculation like video_width + text_width / video_fps (ie. 1280 + 262 / 25) to give me the duration. So now I’m just looking to see if this is possible within the ffmpeg command line itself. tMany thanks