Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (105)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (10891)

  • ffmpeg - capture defined playlist from MPEG-DASH

    11 février 2021, par Klode

    I'm working on capture a public MPEG-DASH streaming. I want to use ffmpeg in order to generate a playable MKV without other software (like streamlink).

    


    So, I can read all playlists inside the MPEG-DASH, each for every bandwidth for video, like 432p, 576p, 720p, and different bandwidth for 1080p. So I can get these playlists and their properties, like the Name.

    


    I want to select one of these playlist and capture this single playlist only with ffmpeg, but I cannot understand which command I can use.

    


    Thanks so much for your help.

    


  • How do I cut a video correctly in FFMPEG ? [on hold]

    16 janvier 2017, par HoHey22

    I have tried every possible command to cut a portion (1-3 mins) of a H.264 mp4 video but it comes out wrong. My video is 29.97 FPS, is 1080p, is 80 minutes long, is 3.5 GB, and is at 6243 KB/s bitrate. The problem is that my output starts off without video for 1-2 seconds then continues, but the audio does start off right away. It plays well synced (audio & video) in any media player, but when using it anywhere else (rendering for production purposes) like in Adobe AE, Media Encoder, or a video converter, the FINAL rendered video starts on point with the video (at 0 secs) with where the audio started. Therefore, the audio ends up 1-2 seconds ahead and I don’t want this.
    This also happens when trimming a YouTube video online at http://clipconverter.cc
    My command is as follows :

    ffmpeg -ss 01:19:22.000 -t 00:1:43.000 -i "in.mp4" -acodec copy -vcodec copy out.mp4

    I even tried putting the -ss after the -i, but I get the same results.
    Also, I if already have a video with this issue, what can I do to fix it ? What could I also do in Adobe AE for this ?
    This site : https://ubuntuforums.org/showthread.php?t=1824250 says that it needs to be cut at the "keyframes". If so how do I do it in ffmpeg ? I do not intend to EVER re-encode, it takes too long and recompresses the video with artifacts.

    I have used both static and shared builds of ffmpeg. Also used stable 3.2.2 and ffmpeg-20170112-6596b34-win64-static, no luck.

  • How to make low latency and have good quality for hls live streaming

    10 avril 2017, par parsa

    I used this code for create live stream from a mp4 file :

    ffmpeg -re -i input.mp4
    -c:a aac -c:v libx264 -s uhd2160 -f hls -hls_list_size 0 2160p/out.m3u8  
    -c:a aac -c:v libx264 -s 2560x1440 -f hls -hls_list_size 0 1440p/out.m3u8  
    -c:a aac -c:v libx264 -s hd1080 -f hls -hls_list_size 0 1080p/out.m3u8  
    -c:a aac -c:v libx264 -s hd720 -f hls -hls_list_size 0 720p/out.m3u8  
    -c:a aac -c:v libx264 -s hd480 -f hls -hls_list_size 0 480p/out.m3u8  
    -c:a aac -c:v libx264 -s nhd  -f hls -hls_list_size 0 360p/out.m3u8
    -c:a aac -c:v libx264 -s cga  -f hls -hls_list_size 0 200p/out.m3u8

    but in streaming time, there are very latency.
    it seems, this latency exists on streaming videos which have very heigh quality,just like the video(4k) which I used that for livestream.
    How can I decrease this delay and decrease memory usage for that ?