Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (77)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • 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 (5141)

  • Discard data stream from container using ffmpeg

    10 décembre 2020, par A.Be

    I am trying to get rid of a data (subtitle) stream within a Mp4 container, using ffmpeg.

    



    Here's the screenshot from ffprobe :

    



    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'test.m4v':
Metadata:
major_brand     : isom
minor_version   : 2
compatible_brands: isomiso2avc1mp41
creation_time   : 2018-01-19T15:10:48.000000Z
Duration: 00:00:42.17, start: 0.000000, bitrate: 6260 kb/s
Chapter #0:0: start 0.000000, end 42.166000
Metadata:
  title           : Chapter 1
Stream #0:0(eng): Data: bin_data (text / 0x74786574), 0 kb/s (default)
Metadata:
  creation_time   : 2018-01-19T15:10:48.000000Z
  handler_name    : Apple Alias Data Handler
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, 
fltp, 317 kb/s (default)
Metadata:
  creation_time   : 2018-01-19T15:10:48.000000Z
  handler_name    : AAC audio
Stream #0:2(eng): Video: h264 (High) (avc1 / 0x31637661), yuvj420p(pc), 
1920x1080, 5926 kb/s, 30 fps, 30 tbr, 30k tbn, 60k tbc (default)
Metadata:
  creation_time   : 2018-01-19T15:10:48.000000Z
  handler_name    : H264 video
 **Unsupported codec with id 100359 for input stream 0**


    



    I tried :

    



     ffmpeg -i test.m4v -acodec copy -vcodec copy -sn nodata.mp4


    



    Data track still there, just moved from stream 0 to stream 2

    



    I tried also :

    



     ffmpeg -i test.m4v -acodec copy -vcodec copy -map 0:1 -map 0:2 no2.mp4


    



    Same result, track still there, just jumped to stream 0:2 no luck.

    



    Any hint ?
Thanks in advance

    


  • C# Using ffmpeg with binary data

    27 juillet 2015, par user3763117

    I have the need to make several posters from a movie, however I bounched in several problems.

    I have been searching yesterday whole day how this works and what might be the best solution to do this in my C# project, currently as this far.

    AForge.Video.FFMPEG.VideoFileWriter writer = new VideoFileWriter();
    writer.Open("en.code-bude_test_video.avi", width, height, 25, VideoCodec.MPEG4, 1000000);

    Following the documentation this should work with a local avi file, however I have my movie in binary and have no understanding how to use this stream to let the ffmpeg writer read this

    data is contained like this :

    Byte[] bytes = Convert.IsDBNull(s[col]) ? null : (Byte[])s[col];

    Anybody idea how to do this ?

  • avformat/swfdec : Use side data to communicate w/h changes to the decoder

    2 septembre 2014, par Michael Niedermayer
    avformat/swfdec : Use side data to communicate w/h changes to the decoder
    

    Fixes reading from freed data
    Fixes part of Ticket3539

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/swfdec.c