Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (92)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

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

Sur d’autres sites (5225)

  • how download m3u8 in chunks using ffmpeg ?

    9 mai 2020, par relidon

    I'm trying to convert m3u8 to mp4 and I found the following method that works

    



    ffmpeg -i 'https://....m3u8' -bsf:a aac_adtstoasc \
    -vcodec copy -c copy -crf 50 output.mp4


    



    The end result, however, is too big for me to drag into an external hard drive.

    



    I also tried writing directly to the hard drive /Volumes/2TR/output.mp4 but the end result is the same - the file is too big, the operation fails.

    



    I noticed that if I terminate the operation at any point, the output.mp4 file works perfectly, but that it's not the full video (perfect). If the video is one hour and I just want 30 minutes of it I can terminate the ffmpeg operation at that point.

    



    So I'm wondering whether there's a way for ffmpeg to download the contents in two parts, output-part1.mp4 and output-part2.mp4 ?

    


  • looking for gui based HLS downloader based on ffmpeg & or better download code [closed]

    26 mai 2020, par wahiduzzaman sagar

    currently using ffmpeg for downloading HLS video (m3u8). the code i am using is

    



    ffmpeg -i "www.videoURL.com" -c copy "name name".mp4


    



    its works fine but the problem is it takes a bit more time since I also have to give each video a name where other downloader (video downloadhelper) can automatically get a name from URL. video downloadhelper crashing/stopping a lot so not using it now. also it cant boost speed so i have to run 10-12 simultaneous ffmpeg download with command prompt open to keep the bandwidth use high. which is cluttering the screen and being hard to keep track of.
so is there any better code for faster download or maybe GUI downloader with some feature like auto naming, multi download, etc

    


  • Download highest quality audio from YouTube using youtube-dl

    3 juin 2020, par darvast

    I'm using this command :

    



    youtube-dl -f bestaudio --extract-audio --audio-format "opus" --add-metadata -o "%(playlist_index)s-%(title)s.%(ext)s" "https://www.youtube.com/playlist?list=OLAK5uy_lWRq5MhPNthDDe1nYXtlekDA40wtrpKE0"


    



    Here's the available streams :

    



    [info] Available formats for 6t1dErgAglk:
format code  extension  resolution note
249          webm       audio only tiny   58k , opus @ 50k (48000Hz), 416.34KiB
250          webm       audio only tiny   72k , opus @ 70k (48000Hz), 516.52KiB
140          m4a        audio only tiny  130k , m4a_dash container, mp4a.40.2@128k (44100Hz), 1.06MiB
251          webm       audio only tiny  131k , opus @160k (48000Hz), 923.79KiB
278          webm       140x144    144p   32k , webm container, vp9, 25fps, video only, 159.74KiB
160          mp4        140x144    144p   54k , avc1.4d400b, 25fps, video only, 278.62KiB
242          webm       232x240    240p   71k , vp9, 25fps, video only, 321.29KiB
134          mp4        350x360    360p   96k , avc1.4d4015, 25fps, video only, 303.75KiB
133          mp4        232x240    240p  124k , avc1.4d400c, 25fps, video only, 651.46KiB
243          webm       350x360    360p  126k , vp9, 25fps, video only, 545.77KiB
135          mp4        466x480    360p  174k , avc1.4d401e, 25fps, video only, 534.97KiB
244          webm       466x480    360p  215k , vp9, 25fps, video only, 1003.20KiB
136          mp4        698x720    720p  305k , avc1.4d401f, 25fps, video only, 942.76KiB
137          mp4        1048x1080  1080p  494k , avc1.640020, 25fps, video only, 1.49MiB
247          webm       698x720    720p  593k , vp9, 25fps, video only, 1.97MiB
248          webm       1048x1080  1080p  768k , vp9, 25fps, video only, 3.81MiB
18           mp4        350x360    360p  213k , avc1.42001E, 25fps, mp4a.40.2@ 96k (44100Hz), 1.73MiB
22           mp4        698x720    720p  242k , avc1.64001F, 25fps, mp4a.40.2@192k (44100Hz) (best)


    



    When I run the above command it seems to be converting m4a to opus : https://prnt.sc/st2l8u

    



    I'm wondering why it's doing that instead of getting it from the webm container ?