Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (10961)

  • Merge commit ’56d061ce9da954560892e3551513d5ecc0439846’

    26 novembre 2013, par Michael Niedermayer
    Merge commit ’56d061ce9da954560892e3551513d5ecc0439846’
    

    * commit ’56d061ce9da954560892e3551513d5ecc0439846’ :
    metasound : add last missing modes (8kHz @ 6kbps per channel)

    Conflicts :
    Changelog
    doc/general.texi

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
    • [DH] doc/general.texi
    • [DH] libavcodec/metasound.c
    • [DH] libavcodec/metasound_data.c
    • [DH] libavcodec/twinvq.c
    • [DH] libavcodec/twinvq.h
    • [DH] libavcodec/twinvqdec.c
  • Merge commit ’5846646296e377e093441dfe9eadde38ff1f7c99’

    1er novembre 2013, par Michael Niedermayer
    Merge commit ’5846646296e377e093441dfe9eadde38ff1f7c99’
    

    * commit ’5846646296e377e093441dfe9eadde38ff1f7c99’ :
    Add raw HEVC demuxer

    Conflicts :
    Changelog
    libavformat/hevcdec.c
    libavformat/version.h

    See : 902a5fa7228d92bf7e0a8f523a25cf72d31afab4 and later commits
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
    • [DH] doc/general.texi
    • [DH] libavformat/hevcdec.c
    • [DH] libavformat/version.h
  • FFmpeg Not Creating or Appending Final HLS Segment When RTMP Stream Ends [closed]

    14 août 2024, par Arjit

    I am transcoding an RTMP stream to HLS using FFmpeg, and I have a problem : when the RTMP stream finishes, the last segment, which does not reach the target duration, is not created as a .ts file. Consequently, this last segment is not appended to the playlist file.

    &#xA;

    command :

    &#xA;

    fmpeg -i rtmp://localhost:1935/live/xyz -c:v libx264 -preset veryfast -b:v 400k -c:a aac -b:a 64k -s 426x240 -hls_playlist_type event -hls_time 10 -hls_list_size 0 -hls_segment_filename jack/240p_%03d.ts jack/240p.m3u8&#xA;

    &#xA;

    I expected that when the RTMP stream ends or when i terminate that FFmpeg process, FFmpeg would create a .ts file for the last segment, even if it is shorter than the target duration (10 seconds), and that this segment would be appended to the playlist (output.m3u8).

    &#xA;