Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (97)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10824)

  • avformat/matroskaenc : Don't waste bytes on ChapterAtoms length fields

    14 janvier 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Don't waste bytes on ChapterAtoms length fields
    

    Also check the (user-provided) metadata tags for being too long.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/matroskaenc.c
    • [DH] tests/ref/fate/webm-dash-chapters
  • FFmpeg downscale video while maintaining aspect ratio SAR and DAR

    12 avril 2023, par Solaris

    How can I resize the video (eg 1080x ? to 480x ?) while maintain aspect ratio (SAR and DAR) ?&#xA;I want to use the output video to create Dash MPD

    &#xA;

    I tried multiple filters&#xA;-filter:v &#x27;scale=854:480&#x27;&#xA;-filter:v &#x27;scale=-1:480&#x27;&#xA;-filter:v &#x27;scale=-2:480&#x27;&#xA;-filter:v &#x27;scale=854:480:force_original_aspect_ratio=decrease,pad=854:480:(ow-iw)/2:(oh-ih)/2,setsar=sar=1&#x27;

    &#xA;

    But can get exact SAR and DAR , at least ffmpeg -f dash doesn't allow both streams to be in same adaptation set

    &#xA;

  • Option to generate a .m4s file every second

    15 octobre 2020, par Adrian Angkajaya

    I am trying to stream my live recording from a camera (web cam/ IP cam) to my web application. The streaming technique I use is MPEG-DASH, which has manifest in MPD format. To generate an MPD format from the web-cam, I use FFmpeg tool in shell command line :

    &#xA;

    ffmpeg -re -y -f dshow -i video="Logitech HD Webcam C525" -c:v libx264 -c:a libfdk_aac -f dash "manifest.mpd" &#xA;

    &#xA;

    This code will generate a video chunk in .m4s format every 5-8 seconds.

    &#xA;

    Question is, what FFmpeg option can I use to generate a .m4s file every second instead of every 5-8 seconds ? I suppose it has something to do with segment ?

    &#xA;