Recherche avancée

Médias (91)

Autres articles (84)

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

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (4998)

  • Why does FFMPEG always make large WebM files ?

    2 avril 2013, par Student of Hogwarts

    I'm trying to encode my movies into WebM :

    ffmpeg -i input.MOV -codec:v libvpx -quality good -cpu-used 0 -b:v 10k
    -qmin 10 -qmax 42 -maxrate 10k -bufsize 20k -threads 8 -vf scale=-1:1080
    -codec:a libvorbis -b:a 192k
    output.webm

    I want to encode at a couple of different bit rates (video and audio combined) :

    • 2192 kbps
    • 1692 kbps
    • 1000 kbps

    The problem is that no matter which bit rates I enter, I always get a file with a bit rate higher than 1900 kbps. (1914 kbps with the code example above.)

    What am I doing wrong ?

  • how to add multi vf filter on one command ffmpeg scale resize and watermark text [closed]

    7 août 2024, par Ibrahim Noshy

    can you help me

    


    i need scale video to 720p and add watermark

    


    i tray this put not work

    


    
-filter:v scale=-1:720 -c:v libx264 -preset medium -crf 28 -b:v 1.5M -pix_fmt yuv420p10le -vf "drawtext=text='✠ Orsozox Movies ✠':x=w-tw-10:y=10:fontsize=24:fontcolor=white:shadowcolor=black:shadowx=5:shadowy=5" -c:a aac -b:a 128k


    


    I also face a problem sometimes it works but I face a problem with the stream when uploading to Telegram on some mobile devices the video does not work on them

    


    can you help me

    


    to fined best code

    


  • avformat/hlsenc : add a use_localtime option to expand the segment filename with localtime

    31 août 2015, par LiuQi
    avformat/hlsenc : add a use_localtime option to expand the segment filename with localtime
    

    test examples :

    ./ffmpeg -re -i /Movies/objectC/facebook.mp4 -v verbose -c copy -f hls -hls_segment_filename test-%s.ts -use_localtime 1 -bsf:v h264_mp4toannexb aaa.m3u8

    [StevenLiu@localhost ffmpeg]$ cat aaa.m3u8 ;ll test-*.ts
    test-1441052221.ts
    test-1441052231.ts
    test-1441052235.ts
    test-1441052243.ts
    test-1441052249.ts
    - rw-r—r— 1 StevenLiu staff 1310736 9 1 04:15 test-1441052131.ts
    - rw-r—r— 1 StevenLiu staff 495192 9 1 04:15 test-1441052141.ts
    - rw-r—r— 1 StevenLiu staff 1310736 9 1 04:17 test-1441052212.ts
    - rw-r—r— 1 StevenLiu staff 1067840 9 1 04:17 test-1441052221.ts
    - rw-r—r— 1 StevenLiu staff 235564 9 1 04:17 test-1441052231.ts
    - rw-r—r— 1 StevenLiu staff 1187220 9 1 04:17 test-1441052235.ts
    - rw-r—r— 1 StevenLiu staff 694848 9 1 04:17 test-1441052243.ts
    - rw-r—r— 1 StevenLiu staff 526588 9 1 04:17 test-1441052249.ts
    [StevenLiu@localhost ffmpeg]$

    ./ffmpeg -re -i /Movies/objectC/facebook.mp4 -v verbose -c copy -f hls -hls_segment_filename test-%s.ts -use_localtime 1 -bsf:v h264_mp4toannexb aaa.m3u8

    [StevenLiu@localhost ffmpeg]$ cat aaa.m3u8 ;ll aaa-*.ts
    aaa-1441052417.ts
    aaa-1441052427.ts
    aaa-1441052437.ts
    aaa-1441052440.ts
    aaa-1441052449.ts
    - rw-r—r— 1 StevenLiu staff 1310736 9 1 04:19 aaa-1441052382.ts
    - rw-r—r— 1 StevenLiu staff 277300 9 1 04:19 aaa-1441052392.ts
    - rw-r—r— 1 StevenLiu staff 1310736 9 1 04:20 aaa-1441052417.ts
    - rw-r—r— 1 StevenLiu staff 1067840 9 1 04:20 aaa-1441052427.ts
    - rw-r—r— 1 StevenLiu staff 235564 9 1 04:20 aaa-1441052437.ts
    - rw-r—r— 1 StevenLiu staff 1187220 9 1 04:20 aaa-1441052440.ts
    - rw-r—r— 1 StevenLiu staff 338776 9 1 04:20 aaa-1441052449.ts
    [StevenLiu@localhost ffmpeg]$

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/hlsenc.c