Recherche avancée

Médias (91)

Autres articles (106)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • movenc : Add an F4V muxer

    17 septembre 2012, par Clément Bœsch
    movenc : Add an F4V muxer
    

    F4V is Adobe’s mp4/iso media variant, with the most significant
    addition/change being supporting other flash codecs than just
    aac/h264.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] Changelog
    • [DBH] configure
    • [DBH] libavformat/allformats.c
    • [DBH] libavformat/movenc.c
    • [DBH] libavformat/movenc.h
    • [DBH] libavformat/version.h
  • Combine .dash video and audio segments to .mp4

    11 décembre 2019, par Mike Stevens

    I was able to download some dash video segments (youtube-dl was apparently blocked from downloading the .mpd and just downloading, concatenating as normal) and was hoping to combine/concatenate them so I could watch in VLC, perhaps using ffmpeg. I was able to download the relevant .mpd and .ismc files, so I have all of the DASH video and audio segments, as well as the .mpd and .ismc downloaded and in one folder.

    The video files are labelled as such

    video=869000.dash
    video=869000-0.dash
    video=869000-600.dash
    video=869000-1200.dash

    and the audio in a similar fashion

    audio=96000.dash
    audio=96000-0.dash
    audio=96000-96225.dash

    Would anyone know of a way to combine all of these into one watchable video file ? AdobeHDS used to work great for combining fragments, and youtube-dl cleary has some sort of method to do it, but neither works with this particular .mpd. I don’t believe concatenate in ffmpeg will work, when I try to do that, it initializes the first .dash file (audio or video), but stops there.

    When I try to put the .mpd file through ffmpeg, it returns "Failed to open an initialization section in playlist 0". I would’ve assumed this initialization was the video=869000.dash file though (which is the one segment file that ffmpeg does recognize) ?

  • discord.py Heroku FFmpeg issue

    6 avril 2022, par No.BoD

    hi I'm trying to deploy a discord bot on heroku. i'm using ffmpeg to stream music to a voice channel. i tried it local on my windows and got it working but when I deployed it on heroku, throws this exception and says nothing !

    &#xA;

    I use these buildpacks :

    &#xA;

      &#xA;
    1. heroku/python
    2. &#xA;

    3. https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git
    4. &#xA;

    &#xA;

    I appreciate if someone can help
    &#xA;here's a sample code :

    &#xA;

    vid = pafy.new("https://www.youtube.com/watch?v=gdL7s0kw0SM")&#xA;print("Pafy Vid Created!")&#xA;audio = vid.getbestaudio()&#xA;print("Pafy Audio Created!")&#xA;try:&#xA;    // self.FFMPEG_OPTIONS = {&#x27;before_options&#x27;: &#x27;-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5&#x27;, &#x27;options&#x27;: &#x27;-vn&#x27;}&#xA;    self.vc[ctx.guild.id].play(FFmpegPCMAudio(Song[&#x27;source&#x27;], **self.FFMPEG_OPTIONS), after=lambda _: E.set())&#xA;    print("Playing Music!!!")&#xA;except Exception as ex:&#xA;    print(ex)&#xA;

    &#xA;

    and here's what I got :

    &#xA;

    2021-09-20T14:31:19.958645&#x2B;00:00 app[worker.1]: Pafy Vid Created!&#xA;2021-09-20T14:31:19.958889&#x2B;00:00 app[worker.1]: Pafy Audio Created!&#xA;2021-09-20T14:31:20.447278&#x2B;00:00 app[worker.1]:&#xA;

    &#xA;