Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (89)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (9840)

  • java.io.IOException : Cannot append Mp4TrackImpl{handler='vide'} to Mp4TrackImpl{handler='vide'} since their Sample Description Boxes differ :

    6 février 2014, par Arslan Ahmad

    While Merging the multiple videos using ffmpeg I have got this Exception.

    java.io.IOException: Cannot append Mp4TrackImpl{handler='vide'} to Mp4TrackImpl{handler='vide'} since their Sample Description Boxes differ:
  • ffmpeg with single input, double output to piped output

    29 mars 2023, par Laurier

    I'm trying to stream chunks of a remote video file into ffmpeg, create MP4 and MP3 split files from the original one, and send those chunks back for immediate upload via piping to s3 cp.

    


    What I'd like to do is essentially combine these 2 commands into 1 :

    


    aws s3 cp s3://bucket/file.mp4 - | ffmpeg -i - -f matroska output.mkv | aws s3 cp - s3://bucket
aws s3 cp s3://bucket/file.mp4 - | ffmpeg -i - -f output.mp3 | aws s3 cp - s3://bucket


    


    I tried different variants of the following :

    


    aws s3 cp s3://bucket/file.mp4 - | ffmpeg -i - -f matroska output.mkv -f mp3 output.mp3 | aws s3 cp - s3://bucket


    


    But I'm not sure how to split the multiple outputs into 2 aws cp commands running in parallel

    


  • ffmpeg doesn't always create wave picture

    17 février 2017, par Sean

    @LordNeckbeard and other ffmpeg experts,

    can you please help me with generating wave picture. the following command works perfectly on some videos and it doesn’t on other videos :

    ffmpeg  -i "input.mp4" -filter_complex "[0:a]aformat = channel_layouts = mono, compand = gain = -6, showwavespic = s = 1920x384: colors =red|blue[fg]; color = s = 1920x384: color =#444444, drawgrid = width = 38:height = 38:color =#555555@0.5[bg]; [bg][fg]overlay = format = rgb, drawbox = x = (iw - w) / 2:y = (ih - h) / 2:w = iw:h = 2:color =#000000@0.4" -vframes 1  "output.png"

    when working, it generates the following wave pic :
    working example

    on other videos, it shows the grid but it seems that the wave signal is hidden behind the grid

    wave hidden behind the grid

    Your help is greatly appreciated !

    Thank you,
    Sean.