
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (55)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7935)
-
The 7 GDPR Principles : A Guide to Compliance
11 août 2023, par Erin — Analytics Tips, GDPR -
Grabbing a single image from a MS VS .NET 6.0 C# WPF process always returns the same image
12 mai 2023, par Wolfgang KurzI am trying to develop a MS VS .NET 6.0 C# WPF application to digitize my Super 8 cine films. To grab the frames of the film I want to use FFMPEG because Accord.NET6.0 DirectShow does not work under MS VS 2022 .
I use
FFmpeg 64-bit static Windows build from www.gyan.dev
Version : 2022-09-29-git-8089fe072e-full_build-www.gyan.dev


FFMPEG is invoked from a Process in ma application whicch sets the process FFMPEG start parameters. The webcam parameter is "USB Webcam" ( digital Celestron handheld microscope connected via USB - is DirectShow compatible )
The video resolution parameter "camRes" is "1280x960"


public void UpdateImage(string aString)
 {
 string startPath = "C:" + MainWindow.bSl + "ffmpeg" + MainWindow.bSl + "bin" + MainWindow.bSl + "ffmpeg.exe ";

 MainWindow.aResult = "";
 System.Drawing.Bitmap result;
 ProcessStartInfo psi;
 psi = new ProcessStartInfo();
 psi.FileName = startPath;
 string targPath;
 psi.Arguments = "-f dshow -video_size" + MainWindow.dQuote + webCam + MainWindow.dQuote +
 " -framerate 10 -i video=" + MainWindow.dQuote + camRes + MainWindow.dQuote +
 " -frames:v 1 test%3d.bmp -update 1";
 string errors = "";
 string results = "";
 psi.CreateNoWindow = false;
 psi.RedirectStandardOutput = true;
 psi.RedirectStandardError = true;
 psi.WindowStyle = ProcessWindowStyle.Normal;
 psi.WorkingDirectory = "C:" + MainWindow.bSl + "ffmpeg" + MainWindow.bSl + "bin" + MainWindow.bSl;

 using (Process theProcess = new Process())
 {
 theProcess.StartInfo = psi;
 theProcess.Start();

 theProcess.WaitForExit();
 while (theProcess.HasExited == false)
 {
 Thread.Sleep(50);
 }
 Thread.Sleep(50);

 try
 {
 if (File.Exists(pathCI) == true)
 {
 DefineImage.ffmpegRes = new Bitmap(pathCI);
 MainWindow.actMWInstance.UpdateMessage(DateTime.Now +
 "- Old image disposed, new image grabbed");
 File.Delete(pathCI);
 }
 }
 catch (System.Exception ex)
 {
 MainWindow.actMWInstance.UpdateMessage(DateTime.Now + "Image grabbing failed");
 }
 theProcess.Close();
 theProcess.Dispose();
 }

 if (aString.Length == 0)
 {
 File.Delete(pathCI);
 MainWindow.actMWInstance.DoMove("200", "0", true);
 }
 if (ffmpegRes != null)
 {
 BitmapSource aBMPSrc = BitmapConversion.ToWpfBitmap(ffmpegRes);
 IMGFrame.Source = aBMPSrc;
 }
 Show();
 }



The attached screenshot shows the expected GUI content.
https://www.wkurz.com/wkurz/images/FFMPEGTEST.jpg


My problem now is, when I try to refresh the image in the
DefineDialog
window, I always get the same image although the film has been moved by one frame.

Is the first image cached by FFMPEG and always used again with the provided parameters.


How to force FFMPEG to replace the image with a new one.



-----------------------------------------------------------------------+this is additional information to the question.
I have managed to grab the film frame but still get always the same image during a session :*




It is obvious that the cine film frame has been successfully grabbbed.
The next step should be to work at the image ( correct brightness contrast, gama and colors) and then store the evaluated correction values that have later to be applied to the frames during a batch process, which automatically transports the film, grabs the frames and corrects the colors and then stores the frames as consecutively numbered images which than can be used to generate a video with FFMPEG :


Now the problem I cannot overcome :


In the definition dialog there are 2 buttons ( Refresh and New Image). The intension is to reread / regrab a frame, if the current frame is not optimal to evaluate the correction values.


Whenever I click one of the buttons FFMPEG seems to grab an image, but FFMPEG provides always the same (identcial to the first already available image) to the caller ( a .NET C# Process in my proggram).


The output stream is a single jpg image ( test%04d.jpg ) in a specified target library . Here follows the generated output which seem to be OK according to my knowledge.


I want to ask all interested persons to look over this provided information - may be someone has an idea, what causes the fact, that FFMPEG 6.0 van Neumann always delivers the first image grabbed. in a session.
It seems that there is something cached and reused over and over again.


DefImg 147: UpdateImage started ( Lines starting with DefImg or DefineImage are test output statements provided by the C# program)



DefineImage 155 11.05.2023 17:53:20 C :\ffmpeg\bin\ffmpeg.exe -y -nostdin -f dshow -an -video_size 1280x960 -framerate 10 -i video="USB Microscope" -filter:v "smartblur=luma_radius=0.9:luma_strength=0.7:luma_threshold=0" -frames:v 1 C :\FilmProjList\TEST\TEST%%04d.jpg -update 1
DefineImage 180 ffmpeg version 6.0-full_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers
built with gcc 12.2.0 (Rev10, Built by MSYS2 project)
configuration : —enable-gpl —enable-version3 —enable-static —disable-w32threads —disable-autodetect —enable-fontconfig —enable-iconv —enable-gnutls —enable-libxml2 —enable-gmp —enable-bzlib —enable-lzma —enable-libsnappy —enable-zlib —enable-librist —enable-libsrt —enable-libssh —enable-libzmq —enable-avisynth —enable-libbluray —enable-libcaca —enable-sdl2 —enable-libaribb24 —enable-libdav1d —enable-libdavs2 —enable-libuavs3d —enable-libzvbi —enable-librav1e —enable-libsvtav1 —enable-libwebp —enable-libx264 —enable-libx265 —enable-libxavs2 —enable-libxvid —enable-libaom —enable-libjxl —enable-libopenjpeg —enable-libvpx —enable-mediafoundation —enable-libass —enable-frei0r —enable-libfreetype —enable-libfribidi —enable-liblensfun —enable-libvidstab —enable-libvmaf —enable-libzimg —enable-amf —enable-cuda-llvm —enable-cuvid —enable-ffnvcodec —enable-nvdec —enable-nvenc —enable-d3d11va —enable-dxva2 —enable-libvpl —enable-libshaderc —enable-vulkan —enable-libplacebo —enable-opencl —enable-libcdio —enable-libgme —enable-libmodplug —enable-libopenmpt —enable-libopencore-amrwb —enable-libmp3lame —enable-libshine —enable-libtheora —enable-libtwolame —enable-libvo-amrwbenc —enable-libilbc —enable-libgsm —enable-libopencore-amrnb —enable-libopus —enable-libspeex —enable-libvorbis —enable-ladspa —enable-libbs2b —enable-libflite —enable-libmysofa —enable-librubberband —enable-libsoxr —enable-chromaprint
libavutil 58. 2.100 / 58. 2.100
libavcodec 60. 3.100 / 60. 3.100
libavformat 60. 3.100 / 60. 3.100
libavdevice 60. 1.100 / 60. 1.100
libavfilter 9. 3.100 / 9. 3.100
libswscale 7. 1.100 / 7. 1.100
libswresample 4. 10.100 / 4. 10.100
libpostproc 57. 1.100 / 57. 1.100
Trailing option(s) found in the command : may be ignored.
Input #0, dshow, from 'video=USB Microscope' :
Duration : N/A, start : 5368.514437, bitrate : N/A
Stream #0:0 : Video : rawvideo (YUY2 / 0x32595559), yuyv422(tv, bt470bg/bt709/unknown), 1280x960, 10 fps, 10 tbr, 10000k tbn
Stream mapping :
Stream #0:0 -> #0:0 (rawvideo (native) -> mjpeg (native))
[swscaler @ 000001442fdcebc0] deprecated pixel format used, make sure you did set range correctly ( that I do not understand )
Last message repeated 3 times
[mjpeg @ 00000144278b0d80] removing common factors from framerate
Output #0, image2, to 'C :\FilmProjList\TEST\TEST%04d.jpg' :
Metadata :
encoder : Lavf60.3.100
Stream #0:0 : Video : mjpeg, yuvj422p(pc, bt470bg/bt709/unknown, progressive), 1280x960, q=2-31, 200 kb/s, 10 fps, 10 tbn
Metadata :
encoder : Lavc60.3.100 mjpeg
Side data :
cpb : bitrate max/min/avg : 0/0/200000 buffer size : 0 vbv_delay : N/A
frame= 0 fps=0.0 q=3.6 size= 0kB time=00:00:00.00 bitrate=N/A speed=N/A

frame= 1 fps=0.0 q=3.6 Lsize=N/A time=00:00:00.00 bitrate=N/A speed= 0x

video:45kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : unknown

DefineImage 248 11.05.2023 17:53:23 ( test output from, the C# program)
Das Programm "[11724] Cine2Video.exe" wurde mit Code 0 (0x0) beendet.




—


Mit freundlichen Grüßen / Best regards
Ute & Wolfgang Kurz
Domaine : https://uwkurz.de ; Homepage : https://www.uwkurz.de/home
Location : 9° 11' 27,75" East, 48° 43' 32,80" North
E-Mail : wolfgang@uwkurz.de , ute@uwkurz.de
Gesendet über Glasfaser von HOMENET.de




-
How to download SAMPLE-AES-CTR encrypted stream
28 décembre 2022, par MqxHey is there a way for me to use
ffmpeg
to download the SAMPLE-AES-CTR encrypted stream ?

When I open the
mp4
file the audio works fine but the video is broken.


This is the
m3u8
file :

#EXTM3U
#EXT-X-VERSION:6
#EXT-X-TARGETDURATION:9
#EXT-X-PLAYLIST-TYPE:VOD
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-PROGRAM-DATE-TIME:2019-01-01T00:00:00.000Z
#EXT-X-DATERANGE:ID="pod_0",START-DATE="2019-01-01T00:00:00.000Z",DURATION=1294.7935,X-START-OFFSET="0.0"
#EXT-X-KEY:METHOD=SAMPLE-AES-CTR,KEYFORMAT="urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed",KEYFORMATVERSIONS="1",URI="data:text/plain;base64,AAAAMnBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAABISENR18PVtrUn8kOFwjHCeoCI="
#EXT-X-KEY:METHOD=SAMPLE-AES-CTR,KEYFORMAT="com.microsoft.playready",KEYFORMATVERSIONS="1",URI="data:text/plain;charset=UTF-16;base64,xAEAAAEAAQC6ATwAVwBSAE0ASABFAEEARABFAFIAIAB4AG0AbABuAHMAPQAiAGgAdAB0AHAAOgAvAC8AcwBjAGgAZQBtAGEAcwAuAG0AaQBjAHIAbwBzAG8AZgB0AC4AYwBvAG0ALwBEAFIATQAvADIAMAAwADcALwAwADMALwBQAGwAYQB5AFIAZQBhAGQAeQBIAGUAYQBkAGUAcgAiACAAdgBlAHIAcwBpAG8AbgA9ACIANAAuADAALgAwAC4AMAAiAD4APABEAEEAVABBAD4APABQAFIATwBUAEUAQwBUAEkATgBGAE8APgA8AEsARQBZAEwARQBOAD4AMQA2ADwALwBLAEUAWQBMAEUATgA+ADwAQQBMAEcASQBEAD4AQQBFAFMAQwBUAFIAPAAvAEEATABHAEkARAA+ADwALwBQAFIATwBUAEUAQwBUAEkATgBGAE8APgA8AEsASQBEAD4AOQBmAEIAMQAxAEsAMQB0AC8ARQBtAFEANABYAEMATQBjAEoANgBnAEkAZwA9AD0APAAvAEsASQBEAD4APAAvAEQAQQBUAEEAPgA8AC8AVwBSAE0ASABFAEEARABFAFIAPgA="
#EXT-X-KEY:METHOD=SAMPLE-AES-CTR,KEYFORMAT="PRMNAGRA",KEYFORMATVERSIONS="1",URI="data:text/plain;base64,eyJrZXktaWQiOiJkNDc1ZjBmNS02ZGFkLTQ5ZmMtOTBlMS03MDhjNzA5ZWEwMjIiLCJlbWkiOiJjdHIiLCJwcm0iOiJleUpqYjI1MFpXNTBTV1FpT2lKamRISWlMQ0pyWlhsSlpDSTZJbVEwTnpWbU1HWTFMVFprWVdRdE5EbG1ZeTA1TUdVeExUY3dPR00zTURsbFlUQXlNaUo5In0="
#EXT-X-MAP:URI="241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/map.mp4"
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/00/00_000.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/00/08_008.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/00/16_016.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/00/24_024.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/00/32_032.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/00/40_040.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/00/48_048.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/00/56_056.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/01/04_064.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/01/12_072.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/01/20_080.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/01/28_088.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/01/36_096.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/01/44_104.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/01/52_112.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/02/00_120.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/02/08_128.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/02/16_136.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/02/24_144.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/02/32_152.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/02/40_160.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/02/48_168.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/02/56_176.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/03/04_184.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/03/12_192.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/03/20_200.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/03/28_208.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/03/36_216.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/03/44_224.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/03/52_232.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/04/00_240.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/04/08_248.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/04/16_256.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/04/24_264.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/04/32_272.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/04/40_280.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/04/48_288.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/04/56_296.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/05/04_304.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/05/12_312.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/05/20_320.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/05/28_328.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/05/36_336.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/05/44_344.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/05/52_352.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/06/00_360.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/06/08_368.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/06/16_376.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/06/24_384.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/06/32_392.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/06/40_400.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/06/48_408.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/06/56_416.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/07/04_424.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/07/12_432.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/07/20_440.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/07/28_448.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/07/36_456.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/07/44_464.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/07/52_472.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/08/00_480.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/08/08_488.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/08/16_496.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/08/24_504.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/08/32_512.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/08/40_520.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/08/48_528.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/08/56_536.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/09/04_544.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/09/12_552.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/09/20_560.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/09/28_568.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/09/36_576.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/09/44_584.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/09/52_592.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/10/00_600.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/10/08_608.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/10/16_616.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/10/24_624.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/10/32_632.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/10/40_640.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/10/48_648.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/10/56_656.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/11/04_664.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/11/12_672.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/11/20_680.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/11/28_688.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/11/36_696.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/11/44_704.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/11/52_712.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/12/00_720.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/12/08_728.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/12/16_736.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/12/24_744.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/12/32_752.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/12/40_760.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/12/48_768.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/12/56_776.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/13/04_784.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/13/12_792.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/13/20_800.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/13/28_808.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/13/36_816.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/13/44_824.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/13/52_832.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/14/00_840.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/14/08_848.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/14/16_856.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/14/24_864.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/14/32_872.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/14/40_880.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/14/48_888.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/14/56_896.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/15/04_904.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/15/12_912.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/15/20_920.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/15/28_928.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/15/36_936.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/15/44_944.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/15/52_952.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/16/00_960.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/16/08_968.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/16/16_976.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/16/24_984.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/16/32_992.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/16/41_000.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/16/49_008.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/16/57_016.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/17/05_024.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/17/13_032.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/17/21_040.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/17/29_048.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/17/37_056.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/17/45_064.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/17/53_072.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/18/01_080.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/18/09_088.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/18/17_096.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/18/25_104.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/18/33_112.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/18/41_120.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/18/49_128.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/18/57_136.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/19/05_144.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/19/13_152.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/19/21_160.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/19/29_168.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/19/37_176.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/19/45_184.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/19/53_192.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/20/01_200.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/20/09_208.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/20/17_216.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/20/25_224.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/20/33_232.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/20/41_240.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/20/49_248.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/20/57_256.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/21/05_264.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/21/13_272.mp4
#EXTINF:8.008,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/21/21_280.mp4
#EXTINF:5.5055,
241b53fa-e44e-458a-910a-5afca4f57e13/90e4-MAIN/02/4250K/00/21/29_288.mp4
#EXT-X-DISCONTINUITY
#EXT-X-DATERANGE:ID="pod_1",START-DATE="2019-01-01T00:21:34.793Z",DURATION=2.002,X-START-OFFSET="1294.7935"
#EXT-X-MAP:URI="f0af7712-2628-470a-8d9d-ae1c66460e1a/4682-DUB_CARD/02/4250K/map.mp4"
#EXTINF:2.002,
f0af7712-2628-470a-8d9d-ae1c66460e1a/4682-DUB_CARD/02/4250K/00/00/00_000.mp4
#EXT-X-DISCONTINUITY
#EXT-X-DATERANGE:ID="pod_2",START-DATE="2019-01-01T00:21:36.795Z",DURATION=4.004,X-START-OFFSET="1296.7955"
#EXT-X-MAP:URI="52b49aba-7ba2-4882-8e67-f6727417eb66/6da0-DUB_CARD/02/4250K/map.mp4"
#EXTINF:4.004,
52b49aba-7ba2-4882-8e67-f6727417eb66/6da0-DUB_CARD/02/4250K/00/00/00_000.mp4
#EXT-X-DISCONTINUITY
#EXT-X-DATERANGE:ID="pod_3",START-DATE="2019-01-01T00:21:40.799Z",DURATION=2.002,X-START-OFFSET="1300.7995"
#EXT-X-MAP:URI="3d498e45-fa9e-4324-b2f8-cac1d3af3e2f/5906-DUB_CARD/02/4250K/map.mp4"
#EXTINF:2.002,
3d498e45-fa9e-4324-b2f8-cac1d3af3e2f/5906-DUB_CARD/02/4250K/00/00/00_000.mp4
#EXT-X-ENDLIST



If there is any other information I can give to solve the problem please let me know.


I have tried the following lines, but none of them worked :


ffmpeg -i "URL" -c copy output.mp4
ffmpeg -i "URL" -c copy -bsf:a aac_adtstoasc output.mp4