Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (111)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à 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) (...)

Sur d’autres sites (11020)

  • Determining size of data[0] in AVFrame of FFMPEG

    27 mars 2015, par user2742299

    I am relatively new to FFMPEG andII am trying to allocate AVFrame->data[0] of a video frame to uint8_t* buffer using the following lines of code :

    size_t sizeOfFrameData = mpAVFrameInput->linesize[0] * mpAVFrameInput->height;

    memcpy(mFrameData, mpAVFrameInput->data[0], sizeOfFrameData);

    I would like to know if this is a correct way of copying frame data to uint8_t* variable in FFMPEG ?

    Thanks

  • mpeg12dec : do not add stereo3D side data to a non-existing frame

    13 février 2014, par Janne Grunau
    mpeg12dec : do not add stereo3D side data to a non-existing frame
    

    User data is usually coded before slice data. That means the frame
    the user data belongs to is not available while parsing the user data.
    The stereo3D side data has to use the same indirection over the private
    context as pan scan information and A53 captions.

    Bug-Id:632

    • [DH] libavcodec/mpeg12dec.c
  • 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