Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (103)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (14132)

  • avcodec/dpx : Read alternative frame rate from television header

    7 décembre 2020, par Harry Mallon
    avcodec/dpx : Read alternative frame rate from television header
    

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>

    • [DH] libavcodec/dpx.c
  • Convert video to HLS in iOS app without triggering GPL (FFmpegKit alternative ?) [closed]

    7 juillet, par Aziz Bibitov

    I'm building an iOS app in Swift that needs to convert local video files to HLS format (.m3u8). Initially, I used the ffmpeg-kit-ios-full-gpl package from FFmpegKit, which works well. However, since this build includes GPL-licensed components (such as libx264), I'm concerned that using it would require my app to be released under the GPL, which is not compatible with App Store distribution.

    &#xA;

    That said, my needs are fairly basic : I only need to convert H.264 .mp4 video files into HLS format.

    &#xA;

    My Questions :

    &#xA;

      &#xA;
    1. Is there a safe way to use FFmpegKit—such as the full-libarary-lgpl variant—that guarantees no GPL components are used for this task ?
    2. &#xA;

    3. Are there any iOS-native or third-party tools that can reliably convert H.264 .mp4 video files to HLS on-device without introducing GPL concerns ?
    4. &#xA;

    5. Is using Apple’s AVAssetExportSession a viable alternative for exporting to HLS ? I haven't found much official documentation about using it for HLS output.
    6. &#xA;

    &#xA;

    Any guidance on how to perform HLS conversion in an App Store–safe (non-GPL) way would be much appreciated.

    &#xA;

  • How can I create a side-by-side live video stream output from two separate live webcam feed using ffmpeg ? [duplicate]

    10 août 2021, par shudfht85

    I would like to combine two live webcam feeds of same resolution (say 1280 X 1024) into one side-by-side live video feed output (2560X1024) using ffmpeg.&#xA;I found some code from here : https://ffmpeg.org/ffmpeg-filters.html#overlay

    &#xA;

    ffmpeg -i left.avi -i right.avi -filter_complex "&#xA;nullsrc=size=200x100 [background];&#xA;[0:v] setpts=PTS-STARTPTS, scale=100x100 [left];&#xA;[1:v] setpts=PTS-STARTPTS, scale=100x100 [right];&#xA;[background][left]       overlay=shortest=1       [background&#x2B;left];&#xA;[background&#x2B;left][right] overlay=shortest=1:x=100 [left&#x2B;right]&#xA;"&#xA;

    &#xA;

    However, I do not know how I can change the input video from MP4 to a live webcam feed. Any help would be appreciated. Thanks.

    &#xA;