Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (45)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP 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 (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (8265)

  • How to save movie from behind ? [on hold]

    16 mai 2017, par Nips

    I 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 user306517

    I 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 0

    I'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]