Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (59)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9060)

  • ffmpeg command not working with VANC data [closed]

    3 avril 2024, par Parmesh Kumawat

    when i am running below ffmpeg command

    


    ffmpeg -i "udp://ip:port?localaddr=ip&sources=ip&overrun_nonfatal=1&buffer_size=4000000&fifo_size=1000000" -c copy -map 0 -vsync passthrough -copyts vanc_stream1.ts

    


    the bin_data for VANC is changing/not recognized saving as below output

    


    Input #0, mpegts, from 'vanc_stream_ffmpeg.ts':                                                                                                                                                            
  Duration: N/A, bitrate: N/A                                                                        
  Program 1  
  Metadata:
      service_name    : Service01 
      service_provider: FFmpeg              
      Stream #0:0[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
      Stream #0:1[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)
      Stream #0:2[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
      Stream #0:3[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)


    


    It should be saved as

    


    Stream #0:0[0x100]: Data: bin_data ([6][0][0][0] / 0x0006) 
Stream #0:1[0x101]: Data: bin_data ([6][0][0][0] / 0x0006)
Stream #0:2[0x100]: Data: bin_data (VANC / 0x434E4156) 
Stream #0:3[0x101]: Data: bin_data (VANC / 0x434E4156) 


    


    I have tried below tsp command to fetch the stream and it works fine

    


    tsp -I ip port --source ip -O file stream_capture1.ts


    


    i need the same output with ffmpeg command

    


  • Feed raw data to ffmpeg from python

    27 octobre 2020, par eri

    I want to wrap h264 stream to mp4 container on fly. But ffmpeg exits after first buffer

    


    ffmpeg = subprocess.Popen("ffmpeg -f h264 -i pipe: -c copy -f mp4 -movflags frag_keyframe+empty_moov+faststart pipe:".split(), stdout=subprocess.PIPE, stdin=subprocess.PIPE)

fd = ffmpeg.stdout.fileno()
fl = fcntl.fcntl(fd, fcntl.F_GETFL)
fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)

while True:
    data = infile.read(32768)
    ffmpeg.stdin.write(data)
    data = ffmpeg.stdout.read()
    outfile.write(data)


    


  • simple hls server - Streaming from local NAS

    18 juillet 2020, par Neil Bernard

    I'm using FFMPEG to stream to a synology NAS, I cant open the files in VLC over the network. I assume its some sort of CIFS/SMB thing (edit : I think its actually the paths in the .m38u file). I don't really want to setup a nginx server. This is for local use.

    


    Any thoughts on a lightweight solution ?

    


    Cheers in advance

    


    Neil