
Recherche avancée
Autres articles (96)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (10149)
-
Read H264 streaming from Elp H264 with OpenCV + Pyhton
15 janvier 2017, par Francesco PaissanI’m trying to read an udp streaming of a H264 encoded image. The software structure is like follows :
On a BeagleBoneBlack (Ubuntu 16.04) I’ve an Elp H264 cam (see here : https://www.amazon.com/ELP-Support-Android-Windows-Surveillance/dp/B00VDSBH9G ). I stream frames with ffmpeg on a Unicast UDP Stream.
I want to read this images from python and opencv to be able to process them.
I tried with this simple code to see if the cap is opened or not :
import cv2
try:
cap = cv2.VideoCapture("udp://localhost:1234/")
cap.set(CV_CAP_PROP_FOURCC, CV_FOURCC('H', '2', '6', '4'));
except Exception, e:
print str(e)But when I run this script python says :
DtsGetHWFeatures : Create File Failed DtsGetHWFeatures : Create File
Failed Running DIL (3.22.0) Version DtsDeviceOpen : Opening HW in mode
0 DtsDeviceOpen : Create File Failed libva info : VA-API version 0.38.1
libva info : va_getDriverName() returns -1 libva error :
va_getDriverName() failed with unknown libva error,driver_name=(null)
libva info : VA-API version 0.38.1 libva info : va_getDriverName()
returns -1 libva error : va_getDriverName() failed with unknown libva
error,driver_name=(null) libva info : VA-API version 0.38.1 libva info :
va_getDriverName() returns -1 libva error : va_getDriverName() failed
with unknown libva error,driver_name=(null) libva info : VA-API version
0.38.1 libva info : va_getDriverName() returns -1 libva error : va_getDriverName() failed with unknown libva error,driver_name=(null)
GStreamer Plugin : Embedded video playback halted ; module vaapidecode
reported : Could not initialize supporting library. OpenCV
Error : Unspecified error (GStreamer : unable to start pipeline ) in
cvCaptureFromCAM_GStreamer, file /builddir/build/BUILD/opencv-
2.4.12.3/modules/highgui/src/cap_gstreamer.cpp, line 816 /builddir/build/BUILD/opencv-2.4.12.3/modules/highgui/src/cap_gstreamer.cpp:816 :
error : (-2) GStreamer : unable to start pipeline in function
cvCaptureFromCAM_GStreamerCan anybody help me ?
Thanks,
Francesco.
-
In my django app, celery task converts uploaded video w/ ffmpeg, but converted video won't save to s3 ?
29 janvier 2013, par GetItDoneI use Heroku to host my website, and Amazon s3 to store my static and media files. I have a celery task that converts the video file to flv, but the flv doesn't store anywhere. There isn't any error, just there is no file uploaded to my s3 bucket. How can I force the file to save to my s3 bucket after the conversion ? I'm still pretty new web development in general, and I have been stuck trying to get my video conversion working properly for weeks. To be honest, I'm not even sure that I'm doing the right thing with my task. Here is the code in my celery task :
@task(name='celeryfiles.tasks.convert_flv')
def convert_flv(video_id):
video = VideoUpload.objects.get(pk=video_id)
filename = video.video_upload
sourcefile = "%s%s" % (settings.MEDIA_URL, filename)
vidfilename = "%s.flv" % video.id
targetfile = "%svideos/flv/%s" % (settings.MEDIA_URL, vidfilename)
ffmpeg = "ffmpeg -i %s -ar 22050 -f flv -s 320x240 %s" % (sourcefile, targetfile)
#The next lines are code that I couldn't get to work in place of the line above, and are left commented out.
#I am open to suggestions or alternatives for this also.
#ffmpeg = "ffmpeg -i %s -acodec libmp3lame -ar 22050 -f flv -s 320x240 %s" % (sourcefile, targetfile)
#ffmpeg = "ffmpeg -i %s -acodec mp3 -ar 22050 -f flv -s 320x240 %s" % (sourcefile, targetfile)
try:
ffmpegresult = commands.getoutput(ffmpeg)
print "---------------FFMPEG---------------"
print "FFMPEGRESULT: %s" % ffmpegresult
except Exception as e:
ffmpegresult = None
print("Failed to convert video file %s to %s" % (sourcefile, targetfile))
print(traceback.format_exc())
video.flvfilename = vidfilename
video.save()My view :
def upload_video(request):
if request.method == 'POST':
form = VideoUploadForm(request.POST, request.FILES)
if form.is_valid():
video_upload=form.save()
video_id=video_upload.id
video_conversion = convert_flv.delay(video_id)
return HttpResponseRedirect('/current_classes/')
else:
...Any advice, insight, or ideas in general would be greatly appreciated. Obviously I am missing something, but I can't figure out what. I have been stuck with different aspects of getting my video conversion to work with ffmpeg using a celery task for weeks. Thanks in advance.
-
Live TV recording .ts to mp4 with ffmpeg
24 février 2017, par Thaison NguyenI am using HDHomrun Prime to record live TV, the resulted file is a .ts file. I would like to convert this file into .mp4. I tried VLC player to convert that that takes awhile. My research shows that ffmpeg can do this but I ran into an error and google search for this is no help. I ran this code in terminal. (OS ubuntu 16.04)
ffmpeg -i gsgame.ts -c copy -bsf:a aac_adtstoasc ford_ffmpeg.mp4
and I get this.
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] SPS unavailable in decode_picture_timing
[h264 @ 0x561db2eba2e0] non-existing PPS 0 referenced
[h264 @ 0x561db2eba2e0] decode_slice_header error
[h264 @ 0x561db2eba2e0] no frame!
[h264 @ 0x561db2eba2e0] Increasing reorder buffer to 2
[mpegts @ 0x561db2eb57c0] start time for stream 3 is not set in estimate_timings_from_pts
[mpegts @ 0x561db2eb57c0] PES packet size mismatch
Last message repeated 1 times
[mpegts @ 0x561db2eb57c0] Could not find codec parameters for stream 4 (Unknown: none (ETV1 / 0x31565445)): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x561db2eb57c0] Could not find codec parameters for stream 5 (Unknown: none (ETV1 / 0x31565445)): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x561db2eb57c0] Could not find codec parameters for stream 6 (Unknown: none ([192][0][0][0] / 0x00C0)): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, mpegts, from 'gsgame.ts':
Duration: 02:38:20.56, start: 14821.384111, bitrate: 3998 kb/s
Program 3
Stream #0:0[0x1167]: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], Closed Captions, 59.94 fps, 59.94 tbr, 90k tbn, 119.88 tbc
Stream #0:1[0x1168](eng): Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, 5.1(side), fltp, 384 kb/s
Stream #0:2[0x1169](spa): Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, fltp, 192 kb/s
Stream #0:3[0x116a]: Data: scte_35
Stream #0:4[0x116b]: Unknown: none (ETV1 / 0x31565445)
Stream #0:5[0x116c]: Unknown: none (ETV1 / 0x31565445)
Stream #0:6[0x116d]: Unknown: none ([192][0][0][0] / 0x00C0)
[AVBSFContext @ 0x561db2ebade0] Codec 'ac3' (86019) is not supported by the bitstream filter 'aac_adtstoasc'. Supported codecs are: aac (86018)
Error initializing bitstream filter: aac_adtstoasc
Stream mapping:
Stream #0:0 -> #0:0 (copy)
Stream #0:1 -> #0:1 (copy)
Last message repeated 1 timesI appreciate any help.