
Recherche avancée
Autres articles (98)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (9943)
-
every 3 seconds will pause 1 second repeat until the end of the video [FFMpeg]
7 septembre 2020, par MontiI have a video I want to watch for 3 seconds, then pause for 1 second and repeat it until the end of the video. Please help me complete it thank you. This is but what I have tried.


I want it to repeat at the end of the video and also the audio to pause every 3 seconds the audio pause 1 second until the video ends


ffmpeg -i 1.mp4 -vf select='not(between(t\3\,4)' -vsync vfr output.mp4



-
FFmpeg streaming
24 mars 2023, par haysoI am using ffmpeg for streaming. But when i start watch it the stream always stuck for the first 30 40s after that is good.
I am trying to achieve fast and smooth starting


The command i use
ffmpeg -y -nostdin -hide_banner -err_detect ignore_err -loglevel warning -start_at_zero -copyts -vsync 0 -correct_ts_overflow 0 -avoid_negative_ts disabled -max_interleave_delta 0 -probesize 1000000 -analyzeduration 10000000 -progress 903dd5e68006.txt -i "http://example.com" -vcodec copy -acodec copy -sn -f hls -hls_segment_type mpegts -hls_init_time 2 -hls_time 10 -hls_allow_cache 1 -hls_start_number_source epoch -hls_ts_options "mpegts_flags=+initial_discontinuity:mpegts_copyts=1" -hls_delete_threshold 5 -hls_list_size 5 -hls_flags delete_segments+discont_start+omit_endlist -hls_segment_filename /storage/903dd5e6800


i tried to +- analyzeduration, probesize and hls timing, but without success.
The source that i used is stable.


-
Console windows displayed during python script execution [closed]
15 janvier 2020, par vivitarei’m trying to create a Youtube converter with python and Tkinter.
The problem is during the conversion with ffmpeg encoder, a console appear. But I don’t want to display her.Windows console displayed during encoding with ffmpeg
Is there a parameter or something like that to disable this console ?
I’m using this code to launch dowlnoad and youtube-dl do the rest :
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
'logger': MyLogger(),
'progress_hooks': [my_hook],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(['https://www.youtube.com/watch?v=BaW_jenozKc'])