Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (50)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (7304)

  • Video captured from x11grab is not playable in HLS format on Firefox/Safari

    27 juillet 2022, par spartanz51

    I'm trying to produce an HLS playlist from a video file.

    


    It's a file captured from a virtual screen with ffmpeg and x11grab module :

    


    ffmpeg -y -t 10 -copyts -draw_mouse 0 -framerate 24 -f x11grab -thread_queue_size 1024 -i :0 -f pulse -i default -acodec copy /tmp/test_preprocessed.mkv


    


    But when I'm trying to produce HLS from this file, the output seems not correct, as it doesn't play in Firefox/Safari, but does play in Chrome (using hls.js or https://www.hlsplayer.net/ for example)

    


    Original file : https://transfer.sh/y1a6Fv/735171b9-42a1-461a-a118-981119bdf74e_preprocessed.mkv

    


    HLS Playlist generated from this file : https://video-staging-bucket.ams3.digitaloceanspaces.com/c08584ca-4731-4820-b5c7-71f12955c0b2/stackoverflow/playlist.m3u8

    


    (Works in https://www.hlsplayer.net/ with chrome, doesn't works with Firefox/Safari)

    


    How I'm producing the HLS :

    


    ffmpeg -y \
  -t 10 \
  -i 735171b9-42a1-461a-a118-981119bdf74e_preprocessed.mkv \
  -r 24 \
  -filter_complex '[0:v]split=3[v1][v2][v3]; [v1]scale=w=1280:h=720[v1out]; [v2]scale=w=854:h=480[v2out]; [v3]scale=w=640:h=360[v3out]' \
  -map '[v1out]' -c:v:0 libx264 -x264-params "nal-hrd=cbr:force-cfr=1" -b:v:0 3200k -maxrate:v:0 3200k -minrate:v:0 2500k -bufsize:v:0 3200k -preset slow -g 48 -sc_threshold 0 -keyint_min 48 \
  -map '[v2out]' -c:v:1 libx264 -x264-params "nal-hrd=cbr:force-cfr=1" -b:v:1 1600k -maxrate:v:1 1600k -minrate:v:1 1250k -bufsize:v:1 1600k -preset slow -g 48 -sc_threshold 0 -keyint_min 48 \
  -map '[v3out]' -c:v:2 libx264 -x264-params "nal-hrd=cbr:force-cfr=1" -b:v:2 900k -maxrate:v:2 900k -minrate:v:2 700k -bufsize:v:2 900k -preset slow -g 48 -sc_threshold 0 -keyint_min 48 \
  -map a:0 -c:a:0 aac -b:a:0 96k \
  -map a:0 -c:a:1 aac -b:a:1 128k \
  -map a:0 -c:a:2 aac -b:a:2 128k \
  -f hls \
  -hls_time 4 \
  -hls_playlist_type vod \
  -hls_flags independent_segments \
  -hls_segment_type mpegts \
  -hls_segment_filename 'hls'/stream_%v_data%02d.ts \
  -master_pl_name playlist.m3u8 \
  -var_stream_map "v:0,a:0 v:1,a:1 v:2,a:2" \
  -t 10 \
  'hls'/stream_%v.m3u8


    


    Is there something I missed ? Maybe a standard ? Or maybe problem is related to PTS/DTS of my file ?
Thanks !

    


  • FFMpeg doesn't make a blued video on S3

    15 juin 2022, par uekyo

    I want to make a blued video but after running the below code, 48 bite file just appears. I tried mp3 file to transfer to wave then it worked well. Do you guys have any suggestions to make this solution ?

    


    import json
import os
import boto3

def lambda_handler(event, context):
    # boto3 client
    s3 = boto3.client("s3")

    # replace below configuration
    bucket_name = "testestest"
    key = "video1.mp4"

    # downloading file to /tmp directory within lambda
    lambda_file_path = f"/tmp/{key}"
    lambda_output_file_path = "/tmp/trancoded_english_audio.mp4"

    # downloading file
    s3.download_file(bucket_name, key, lambda_file_path)

    # transcoding
    os.system(f'/opt/ffmpeglib/ffmpeg -i {lambda_file_path} -vf "gblur=sigma=50" -c:a copy {lambda_output_file_path}')

    # uploading transcoded file
    s3.upload_file(
        Bucket=bucket_name,
        Key=lambda_output_file_path.split("/")[-1],
        Filename=lambda_output_file_path,
    )

    return {"statusCode": 200, "body": json.dumps("Hello from Srce Cde!")}


    


  • https support for ffmpeg centos ?

    15 novembre 2016, par Abhishek saini

    I have installed ffmpeg on centos.But when I feed url with https like

    ffmpeg -i https://s3-us-west-2.amazonaws.com/bucket/check.mp4 video.mp4

    Error come

    https protocol not found, recompile FFmpeg with openssl, gnutls, or securetransport enabled.

    I know i have to enable this --enable-openssl,but when i am doing like this

    PKG_CONFIG_PATH="/ffmpeg_build/lib/pkgconfig"
    ./configure --prefix="$HOME/ffmpeg_build" --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib -ldl" --bindir="$HOME/bin" --pkg-config-flags="--static" --enable-gpl --enable-nonfree --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-openssl

    It give me error like :

    ERROR: opus not found

    What should I do to enable https? Please help