Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (78)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

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

  • Add multiple overlapping audio files to a video [duplicate]

    15 juin 2024, par JTinkers

    Essentially, I'm trying to achieve this :
enter image description here

    


    The only problem with that is - I'm using ffmpeg programatically, meaning - there won't be any predefined sounds at predefined times, instead - I have code that generates these and executes ffmpeg with the following arguments :

    


    -f concat -r 60 -safe 0 -i {VIDEO_OUTPUT_PATH}/{fileName}.txt
{audioArgs}
-c:v libx264 -preset fast -crf 23 -vf \"scale=1080:1920,format=yuv420p\"
-c:a aac -b:a 192k
-af \"afade=t=out:st={totalSeconds - 3}:d=3\"
{mapArgs} 
-async 1 -movflags +faststart -t {totalSeconds} {outputPath}"


    


    Presumably, if there are 3 sounds (like on the image), mapArgs will be replaced with :

    


    -map 0 -map 1 -map 2 -map 3


    


    and audioArgs will be replaced with :

    


    -itsoffset 0 -i bg.mp3 -itsoffset 13 sound1.mp3 -itsoffset 37 sound2.mp3


    


    However, it seems to be playing background music and the video only - no other sounds.

    


  • avformat/matroskaenc : Fix writing of markers

    28 août 2023, par Steinar H. Gunderson
    avformat/matroskaenc : Fix writing of markers
    

    When the marker writing code was merged from libav to FFmpeg
    in dc62016c, it failed to take into account that the meaning of
    cluster_pos had changed in bda5b662 ; in particular, the special
    value for “I'm not currently working on a cluster” had changed
    from 0 to -1. This makes the avio_write_marker() call never
    be called. Update the if statement to fix it.

    Fixes : Ticket9843
    Signed-off-by : Steinar H. Gunderson <steinar+ffmpeg@gunderson.no>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/matroskaenc.c
  • FFMPEG : Encoding settings to meet YouTube recommendation.

    1er novembre 2016, par Dinindu Perera

    So I need to encode to meet these guidelines from YouTube for 480p and 1080p videos. I need help in the settings of FFMPEG. The video should encode reasonably fast.

    These are the guidelines :
    480p 30fps x264

    • Video Bitrate : 2560 kbps
    • Audio Bitrate : 384 kbps

    1080p 30fps x264

    • Video Bitrate : 8192 kbps
    • Audio Bitrate : 384 kbps

    I’m still learning the ropes with video encoding. Thanks in advance :)