Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (99)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (7418)

  • 360 degree video support in ffmpeg HLS

    25 juin 2020, par Ram

    I want to play 360 degree videos using HLS/DASH protocols. I am currently using ffmpeg and nginx combo. my question is does ffmpeg support 360 video transcoding to hls format. I tried with following command but 360 degree meta data is dropped by ffmpeg. is there any alternative way to do this ?

    


    ffmpeg  -i 360Videosample.mp4 \
-preset fast -g 25 -sc_threshold 0 \
-map v:0 -c:v:0 libx264 -b:v:0 2000k \
-map v:0 -c:v:1 libx264 -b:v:1 6000k \
-map a:0 -map a:0 -c:a aac -b:a 128k -ac 2 \
-f hls -hls_time 4 -hls_playlist_type event  \
-master_pl_name master.m3u8 \
-var_stream_map "v:0,a:0 v:1,a:1" stream_%v.m3u8


    


  • Join a series of mp4 files using ffmpeg following a pattern in filenames

    26 juin 2015, par Slabo

    I’m trying to join a series of generated mp4 files with the filenames in the following order>>

    Vid1.mp4,Vid1s.mp4,Smiley.mp4,Vid2.mp4,Vid2s.mp4,Smiley.mp4, ..... VidN.mp4,VidNs.mp4,Smiley.mp4

    where the pattern is A1,A1s,C,A2,A2s,C .... AN,ANs,C ... where N is the half the number of files in the folder.. File names are actually in a format similar to AN.mp4 and ANs.mp4

    I know it’s going to be something like : :

    ffmpeg -f concat -i some regex -c copy FinalVid.mp4

    I used to know this stuff 10 years ago... ok, 9 years ago..

    Edit : Ok, so after trying to fix this myself, I can better describe the problem as follows

    if two files Vid-N.mp4 and Vid-Ns.mp4 exist, then should be appended to FinalVid.mp4. How do I solve this ? Just thinking out loud: :

    1. get list of mp4 files
    2. for every two pairs of files, append to
      FinalVid.mp4

    Any help appreciated, thanks.

  • FFMPEG multiple file pattern not working in single command

    19 mars 2019, par Bhavik Rathod

    I want to add multiple file sequences in single ffmpeg command, below is my code, video is getting created but only first image sequence is getting used, second is getting ignored

    ffmpeg -y -i input.mp4 -start_number 0000001 -i 1/%07d.png -i 2/%07d.png -filter_complex "[0][1]overlay=x=10:y=10:enable='between(t,0,3)'[v1];[v1][2]overlay=x=10:y=10:enable='between(t,3.8561422222222,6.9761777777778)'[v2]" -map "[v2]" -map 0:a out.mp4

    Now the problem is FFMPEG wants continous images, which i don’t have i have images starting from 0000001.png in each folder, how can i accomplish this without changing much in my images