Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (72)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (7324)

  • How can I include all ts files ffmpeg generates in the m3u8 playlist ?

    14 février 2015, par Pobre

    I have the latest ffmpeg version 2.5 and I am trying to convert a mp4 file into HLS files. From what I understand ffmpeg can generate ts and m3u8 playlist. When ffmpeg finishes, the playlist just contains last few ts files generated. It appears it’s being overwritten. What parameters must I pass to ffmpeg to generate a complete m3u8 list of all the ts files ?

    final m3u8 generated :

    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-TARGETDURATION:9
    #EXT-X-MEDIA-SEQUENCE:50
    #EXTINF:9.000000,
    480x27050.ts
    #EXTINF:9.000000,
    480x27051.ts
    #EXTINF:9.000000,
    480x27052.ts
    #EXTINF:9.000000,
    480x27053.ts
    #EXTINF:0.466667,
    480x27054.ts
    #EXT-X-ENDLIST

    ffmpeg arguments :

    ffmpeg -i test_2.mp4 -c:a aac -strict experimental -ac 2 -ar 48k -ab 64k -c:v libx264 -s 480x270 -aspect 16:9 -b:v 400k -r 15 -g 45 -profile:v baseline -level 3.0 -f hls -hls_time 9 480x270.m3u8
  • Extract single frame based on position provided by subtitle/srt file and generate video of extracted stills

    22 décembre 2022, par lars.schwarz

    I'm looking into doing something that probably can't be done with simple ffmpeg cli commands :

    


      

    1. Extract single frames from video based on a provided srt file

      


    2. 


    3. Generate a new video (same length as the original) but generated from the still images extracted with 1.

      


    4. 


    


    Example :

    


    Video is 1 minute, srt file holds 2 subtitles at 00:00:15 and 00:00:25.

    


    Extract 2 stills/frames and save them as still_00_00_15.jpg and still_00_00_25.jpg

    


    Generate a new video that is 1 minute and only consits of these 2 images on their respective/original timestamps so the generated video of still images can be used with the original srt file.

    


    Is this something that can be achieved using just ffmpeg cli or should I build it using pyffmpeg ? More importantly : is there a name for this type of process and existing tools/libs for doing something like that or is this something so uncommong I need to build it myself anyway ?

    


  • Optimize ffmpeg for text with mpeg1

    20 septembre 2022, par lmalves

    I'm kind of new to video enconding and decoding but I'm currently working with NodeJS and I need to stream the content of a window (using electron) to an angular app.

    


    In my current implementation I'm "grabbing" the app window content :

    


    ffmpeg -f gdigrab -i title="Windows App" -vcodec mpeg1video -r 30 -b:v 10  -bufsize:v 327680 -f rtp rtp://127.0.0.1:1234

    


    Then I'm conveting to http:

    


    ffmpeg -i rtp://127.0.0.1:1234 -protocol_whitelist file,crypto,udp,rtp,http,tcp -f mpegts -codec:v mpeg1video -s 500x515 -b:v 10 -bf 0 http://localhost:59655/

    


    And on the client app using MpegJS to display it with almost the default configuration.

    


    It works relativelly well except for some parts of text where if the font is smaller it's almost impossible to read it.

    


    Like I said I'm new on this and I'm not sure how to optimize it to text.
Any suggestions ?