
Recherche avancée
Autres articles (49)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...)
Sur d’autres sites (8718)
-
How to save movie from behind ? [on hold]
16 mai 2017, par NipsI must convert my mp4 camera movie, to play it from behind. Is this possible in ffmpeg ?
Or maybe html5 can play a movie from behind ?In a film I have closeup on the object, I must play it as move away from the object.
-
ffmpeg is buffering 10 seconds of data every 10 seconds, but I need 1 second of data every second
30 juillet 2014, par user306517I am trying to render an URL, and when I use ffmpeg to do it, it is giving me 10 seconds of data, every 10 seconds. I need to get the data in a way that I am getting 1 second of data every second.
it looks like the URL i am trying to read from is a "m3u8" url, which contains a bunch of m3u8 files, which contain .ts files (transport stream).
any help here would be appreciated.
per suggestion - my ffmpeg command looks like this :
ffmpeg -y -i ".....m3u8" -ar 32000 -ac 1 -acodec pcm_s16le /tmp/foo.wav
-
FFMPEG save udp stream to mp4 file
17 juillet 2020, par DoriHp 0I'm facing some trouble when using ffmpeg to save an udp stream into a mp4 file. When receiving and playing with ffplay by this command


ffplay -i udp://127.0.0.1:10000


everything is ok, but when I save to mp4 file with this command


ffmpeg -i udp://127.0.0.1:10000 -vcodec libx264 -an -pix_fmt yuv420p -r 20 test.mp4


the created mp4 file has only 15 secs length but my streaming was 1 min. I found a solution


ffmpeg -i udp://127.0.0.1:10000 -r 20 -filter:v "setpts=PTS*0.25" -vcodec libx264 -an -pix_fmt yuv420p test.mp4


by using
setpts
video filter, but video's length still wasn't same as the stream.
My udp stream's properties, get by using ffprobe :

[STREAM] 
index=0 
codec_name=h264 
codec_long_name=H.264 / AVC / MPEG-4 AVC / MPEG-4 
profile=High 4:4:4 Predictive 
codec_type=video 
codec_time_base=1/40 
codec_tag_string=[27][0][0][0] 
codec_tag=0x001b 
width=1280 
height=720 
coded_width=1280 
coded_height=720 
closed_captions=0 
has_b_frames=0 
sample_aspect_ratio=N/A 
display_aspect_ratio=N/A 
pix_fmt=yuv444p 
level=31 
color_range=unknown 
color_space=unknown 
color_transfer=unknown 
color_primaries=unknown 
chroma_location=left 
field_order=progressive 
timecode=N/A 
refs=1 
is_avc=false 
nal_length_size=0 
id=0x100 
r_frame_rate=20/1 
avg_frame_rate=20/1 
time_base=1/90000 
start_pts=420655500 
start_time=4673.950000 
duration_ts=N/A 
duration=N/A 
bit_rate=N/A 
max_bit_rate=N/A 
bits_per_raw_sample=8 
nb_frames=N/A 
nb_read_frames=N/A 
nb_read_packets=N/A 
DISPOSITION:default=0 
DISPOSITION:dub=0 
DISPOSITION:original=0 
DISPOSITION:comment=0 
DISPOSITION:lyrics=0 
DISPOSITION:karaoke=0 
DISPOSITION:forced=0 
DISPOSITION:hearing_impaired=0 
DISPOSITION:visual_impaired=0 
DISPOSITION:clean_effects=0 
DISPOSITION:attached_pic=0 
DISPOSITION:timed_thumbnails=0 
[/STREAM] 
[FORMAT] 
filename=udp://127.0.0.1:10000 
nb_streams=1 
nb_programs=1 
format_name=mpegts 
format_long_name=MPEG-TS (MPEG-2 Transport Stream)
start_time=4673.950000 
duration=N/A 
size=N/A 
bit_rate=N/A 
probe_score=50 
[/FORMAT]