Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (75)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6270)

  • Various profiles and settings in H264 AVC codec

    19 avril 2022, par Tina J

    When I convert a video with ffmpeg, and use mediaInfo to review the metadata, I see the followings for the video codec :

    


    Format : AVC 
Format/Info : Advanced Video Codec 
Format profile : Baseline@L3.1 
Format settings : 1 Ref Frames 


    


    Whereas for some other videos, mediaInfo shows this :

    


    Format : AVC 
Format/Info : Advanced Video Codec 
Format profile : High@L4.2 
Format settings : CABAC / 4 Ref Frames 


    


    What are the differences between these two profiles and settings ? Do they have any effects on the compression ratio/file sizes ? Any pros/cons ? My goal is to reduce the video file sizes at much as possible with negligible quality degradation.

    


  • FFMPEG Video Live Stream [on hold]

    22 septembre 2016, par canperk

    I am new to ffMpeg and I need help for an issue

    ffmpeg -f dshow -vcodec mjpeg -i video="BisonCam, NB Pro":audio="Microphone (2- High Definition Audio Device)" output.mp4

    this is my video creator command line and I want to broadcast this video live on an address. For your help I have an .isml file on IIS as publishing point file and the address is http://www.mytestsite.com/live.isml

  • Record audio and video simultaneously with ffmpeg in raspberry pi

    28 juin 2022, par mojtaba

    I am saving audio and video in separate files using Raspberry Pi and USB microphone connected to Raspberry Pi.
My project is to record audio and video simultaneously and save in .flv file using ffmpeg.
I can use the following command to record and save audio and video at the same time
But sound and video are not synchronized.

    


    command : raspivid -t 0 -w 960 -h 480 -fps 24 -b 5000000 -o - | ffmpeg -i - -f alsa -ac 2 -i hw:2,0 -map 0:0 -map 1:0 -vcodec copy -acodec aac -strict -2 test.flv

    


    Please guide me to solve the problem and suggest a solution if there is one.