Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (18)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • FFMPEG convert video file from FLV to MP4. Its not running on browser

    9 janvier 2015, par Vikas Burman

    I am using FFMPEG for converting video file from FLV, AVI to mp4.
    FFMPEG is converting file properly on server. I have played that video, Its playing fine but its not running on browser while after converting file from local machine its playing fine on browser also.

    Local Machine : Ubuntu 12.04

    Server Machine : Centos

    Please Help me why this issue is happening.
    Thanks in advance :)

  • FFMPEG-Unrecognized option 'hls_key_info_file'

    12 mars 2017, par Hoang Nam

    I use ffmpeg to convert file .mp4 into file hls(.m3u8). But i meet problem when i want add key to file. I run command in the directory. Folder include :

    • File video have name : namhh_123.mp4
    • File "file.keyinfo" :

      file.key
      ./file.key
      9e1c83a7e2d04fe930cce5c8ef5c5bd0

    • File file.key

    After that i run command : ffmpeg -i 123_namhh.mp4 -hls_time 10 -hls_key_info_file file.keyinfo out.m3u8

    Unrecognized option ’hls_key_info_file’.
    Error splitting the argument list : Option not found

    *My ffmpeg’s version :

    ffmpeg version 2.6.8 Copyright (c) 2000-2016 the FFmpeg developers
    built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-4)

    My OS : CentOS 7

    Please help me how to solve this problem.Thanks !

  • change OpenCV to ffmpeg

    2 octobre 2020, par beast

    I am using earthcam links for data collection purposes. My implementation works perfectly fine on local but gives me an OpenCV: image broken error on CentOS 7 system. As ffmpeg is used in the background for OpenCV, I want to directly use ffmpeg to read m3u8 file retrieved from streamlink in the following way.

    


    streams = streamlink.streams(stream_link)
q = list(streams.keys())[0]
stream = streams['%s' % q]
video_cap = cv2.VideoCapture(stream.url) ----> # Want to change this line to ffmpeg


    


    An example link that I am using in my problem is - Nyc_5th_Street

    


    Also, In addition, I just need the first frame of the m3u8 file every time I loop it in.