Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (68)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (12314)

  • avcodec/libzvbi-teletextdec : fix txt_default_region limits

    9 juin 2020, par Marton Balint
    avcodec/libzvbi-teletextdec : fix txt_default_region limits
    

    Max region ID is 87. Also the region affects not only the G0 charset but G2 and
    the national subset as well.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/decoders.texi
    • [DH] libavcodec/libzvbi-teletextdec.c
  • FFmpeg make mpeg2 ts without discontinuity

    31 mai 2012, par user1427162

    I have many MOV files recorded with iPhone and I want to convert them to mpeg2 TS. I want to use them for live video streaming with HTTP Live Streaming protocol.

    I set my iPhone to continiously send MOV files to server. Every video clip is 5 seconds long. I want to make mpeg2 TS out of them and add their urls to m3u8 playlist.
    I managed to do all of that, but when I try to play the stream VLC player plays only first two files in playlist, and last file in playlist at that moment.
    I searched the internet and I think this has something to do with discontinuity.

    Is there any way to convert multiple MOV files into multiple mpeg2 TS segments without discontinuity ?

    Or maybe I'm doing something else wrong ?
    Here is my ffmpeg command :

    ffmpeg.exe -i input,MOV -f mpegts output.ts

    and here is my m3u8 list :

    #EXTM3U
    #EXT-X-PLAYLIST-TYPE:EVENT
    #EXT-X-TARGETDURATION:10
    #EXT-X-MEDIA-SEQUENCE:0
    #EXT-X-MEDIA-SEQUENCE:0
    #EXTINF:10,
    fileSequence0.ts
    #EXTINF:10,
    fileSequence1.ts
    #EXTINF:10,
    fileSequence2.ts

    Thanks in advance

  • FFMPEG - Correct command line parameters to create a H.264 Streaming MP4 from a set of images

    27 septembre 2021, par Adam

    I have no problems viewing a video created by my current parameters in a HTML5 browser, Flash player, Windows Phone 7, Android Phone, etc. However, they won't display on iPhone or iPad. If I modify the video using Super and select "Enable Streaming" checkbox they work on iPhone and iPad suddenly. We are suspecting that my command line parameters are incorrect for enabling h.264 streaming and are instead generating a "progressive download" video.

    &#xA;&#xA;

    I'm pretty new to FFMPEG and don't understand a lot of the parameters. Can anyone help correct my existing parameters, or maybe provide the missing parameters, etc ?

    &#xA;&#xA;

    Thanks in advance.

    &#xA;&#xA;

    My current FFMPEG command line paramters are :

    &#xA;&#xA;

    ffmpeg.exe &#xA; -r 30 &#xA; -threads 4 &#xA; -f image2 &#xA; -i .\frame%05d.jpg &#xA; -i audioFile  &#xA; -acodec aac &#xA; -ab 128k &#xA; -ar 44100&#xA; -vcodec h264 &#xA; -crf 27 &#xA; -coder 1 &#xA; -flags +loop &#xA; -cmp +chroma &#xA; -partitions +parti4x4+partp8x8+partb8x8 &#xA; -me hex &#xA; -subq 5 &#xA; -me_range 16 &#xA; -g 60 &#xA; -keyint_min 25 &#xA; -sc_threshold 40 &#xA; -i_qfactor 0.71 &#xA; -b_strategy 1 &#xA; out.mp4&#xA;

    &#xA;