Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (60)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • 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 ;

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6027)

  • Anomalie #4796 (Fermé) : Amélioration marquage @deprecated

    24 mai 2021, par James H.

    Utiliser la convention

    @deprecatted X.Y
    @see alternative

    pour les fonction suivantes :

    • auteurs_article
    • cvtmulti_formulaire_verifier
    • critere_par_joint
    • type_du_logo
    • exporter_csv_ligne
    • action_super_cron_dist

    Cf. https://discuter.spip.net/t/deprecated-dans-ecrire/19947/29

  • Requirement to trim video from front-end

    30 octobre 2023, par user20663233

    I have a specific requirement to implement video uploading from the front-end Next Js framework to a third-party application. During this process, it is necessary to trim the first 20 seconds of the video, store the trimmed segment, and subsequently transmit it to the server. While initially considering the utilization of the FFmpeg library for video trimming, I've come to realize that I require server-side support, as hosting FFmpeg locally is not a feasible option. Therefore, I am exploring alternative solutions that would allow me to accomplish video uploads from the front-end while meeting these requirements.

    


  • Unsuccessful streaming webm video with ffserver - dimensions not set

    5 juin 2015, par randomuser1

    I configured ffmpeg and ffserver. Now when I type :

    ffmpeg -f dshow -list_devices true -i dummy

    I get the list of video/audio devices :

    [dshow @ 00000000045db680] DirectShow video devices (some may be both video and
    audio devices)
    [dshow @ 00000000045db680]  "SF Camera"
    [dshow @ 00000000045db680]     Alternative name "@device_pnp_\\?\usb#vid_04f2&pi
    d_b3b4&mi_00#6&194c0297&0&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\global"
    [dshow @ 00000000045db680] DirectShow audio devices
    [dshow @ 00000000045db680]  "Mic in at rear panel (black) (Realtek High Definiti
    on Audio)"
    [dshow @ 00000000045db680]     Alternative name "@device_cm_{33D9A762-90C8-11D0-
    BD43-00A0C911CE86}\wave_{AA8D55FB-0563-4978-869B-DD5A00FA5272}"
    [dshow @ 00000000045db680]  "Microphone (Realtek High Definition Audio)"
    [dshow @ 00000000045db680]     Alternative name "@device_cm_{33D9A762-90C8-11D0-
    BD43-00A0C911CE86}\wave_{84EFC16A-C3AE-4B02-B26A-1E031F10F7C8}"

    Using that I’m running the ffmpeg command :

    ffmpeg -rtbufsize 1500M -f dshow -i video="SF Camera":audio="Microphone (Realtek High Definition Audio)" http://10.172.180.195:8090/feed1.ffm

    but all I get is :

    Guessed Channel Layout for  Input Stream #0.1 : stereo
    Input #0, dshow, from 'video=SF Camera:audio=Microphone (Realtek High Definition
    Audio)':
     Duration: N/A, start: 738173.764000, bitrate: N/A
       Stream #0:0: Video: rawvideo (YUY2 / 0x32595559), yuyv422, 640x480, 30 tbr,
    10000k tbn, 30 tbc
       Stream #0:1: Audio: pcm_s16le, 44100 Hz, 2 channels, s16, 1411 kb/s
    http://10.172.180.195:8090/feed1.ffm: Invalid data found when processing input

    as the answer from my ffserver. And on the server console I get the following error :

    [ffm @ 0x7f90f4000750]dimensions not set
    Error writing output header for stream "/feed1.ffm": Invalid argument
    10.172.180.109 - - [GET] "/feed1.ffm HTTP/1.1" 200 79

    and that’s all, ffmpeg stops and returns to command line. Does anyone know what can be the problem here ?

    Oh and one more thing that might be helpful - this is my ffserver.conf file :

    <stream>              # Output stream URL definition
      Feed feed1.ffm              # Feed from which to receive video
      Format webm

      # Audio settings
      AudioCodec vorbis
      AudioBitRate 64             # Audio bitrate

      # Video settings
      VideoCodec libvpx
      VideoSize 720x576           # Video resolution
      VideoFrameRate 25           # Video FPS
      AVOptionVideo flags +global_header  # Parameters passed to encoder
                                          # (same as ffmpeg command-line parameters)
      AVOptionVideo cpu-used 0
      AVOptionVideo qmin 10
      AVOptionVideo qmax 42
      AVOptionVideo quality good
      AVOptionAudio flags +global_header
      PreRoll 15
      StartSendOnKey
      VideoBitRate 400            # Video bitrate
    </stream>