Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (81)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (14606)

  • avcodec/hapdec : log reason for failure when texture type doesn’t match stream

    21 juillet 2015, par Tom Butterworth
    avcodec/hapdec : log reason for failure when texture type doesn’t match stream
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/hapdec.c
  • Convert a file to match another's specification exactly with FFMPEG ?

    25 mars 2022, par user1748217

    I have a series of files from the same source and so of the exact same format in every way that I'm concatenating with FFMPEG

    &#xA;

      &#xA;
    • file1.mov
    • &#xA;

    • file2.mov
    • &#xA;

    • file3.mov
    • &#xA;

    &#xA;

    This is very fast and is working fine however no I want to take optional intro file (from many different source and of many different types) and convert that to match the others before joining.

    &#xA;

      &#xA;
    • intro.mp4
    • &#xA;

    &#xA;

    How do I do this with FFMPEG ?

    &#xA;

    Does this give me everything I need ?

    &#xA;

    ffprobe -select_streams a:0 -show_entries \&#xA;  stream=codec_name,channels -of default=nw=1:nk=1 -v 0 ./file1.mov&#xA;&#xA;ffprobe -select_streams v:0 -show_entries \&#xA;  stream=codec_name,width,height,r_frame_rate,pix_fmt \&#xA;  -of default=nw=1:nk=1 -v 0 ./file1.mov&#xA;

    &#xA;

    So with that I can just :

    &#xA;

    ffmpeg -i intro.mp4 \ &#xA;   -c:v h264 -s 1280x720 -pix_fmt yuv420p -framerate 30/1  \ &#xA;   -c:a pcm_s16le -ca 1 intro.mov&#xA;

    &#xA;

    and then merge it seamlessly to the rest ?

    &#xA;

    ffmpeg -f concat -safe 0 -i videos.txt -c copy merged.mov -y&#xA;

    &#xA;

    The answer is of course "no", hence the request for your support.&#xA;The audio is fine when files 1, 2 & 3 are merged but is too fast when the intro + 1, 2 & 3 are merged. The converted intro file always plays fine on it's own after the conversion and after the merge, but the others play audio too fast after the merge.

    &#xA;

    What am I missing ?

    &#xA;

    UPDATE :

    &#xA;

    So in the end this worked for the intro :

    &#xA;

    ffmpeg -i intro.mp4 \ &#xA;   -c:v h264 -s 1280x720 -pix_fmt yuv420p -framerate 30 \ &#xA;   -c:a pcm_s16le -ac 1 -b:a 512k -ar 32000 intro.mov -y&#xA;

    &#xA;

  • float_dsp : Have implementation match function pointer prototype

    1er novembre 2016, par Diego Biurrun
    float_dsp : Have implementation match function pointer prototype
    

    libavutil/x86/float_dsp_init.c(144) : warning C4028 : formal parameter 1 different from declaration
    libavutil/x86/float_dsp_init.c(144) : warning C4028 : formal parameter 2 different from declaration

    • [DBH] libavutil/x86/float_dsp_init.c