Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (58)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (6783)

  • How to take screenshots of streamers using the Twitch API

    10 décembre 2020, par oo92

    My goal is to create a dataset of gameplays on Twitch using the API. How I want to do it is this :

    


      

    1. Get a list of live streams using the API.
    2. 


    3. Use streamlink and ffmpeg on Python to take the screenshots through the Stream source
    4. 


    


    To get the streams, I have the following code thanks to a SO user :

    


    from twitch import TwitchClient&#xA;&#xA;client = TwitchClient(client_id=&#x27;<my client="client">&#x27;)&#xA;streams = client.streams.get_live_streams(limit=100)&#xA;&#xA;print(streams)&#xA;</my>

    &#xA;

    The output is this. Its a lot larger, I just made it shorter... :

    &#xA;

    [{&#x27;id&#x27;: 40889579422, &#x27;game&#x27;: &#x27;Among Us&#x27;, &#x27;broadcast_platform&#x27;: &#x27;live&#x27;, &#x27;community_id&#x27;: &#x27;&#x27;, &#x27;community_ids&#x27;: [], &#x27;viewers&#x27;: 74594, &#x27;video_height&#x27;: 1080, &#x27;average_fps&#x27;: 60, &#x27;delay&#x27;: 0, &#x27;created_at&#x27;: datetime.datetime(2020, 12, 9, 23, 53, 34), &#x27;is_playlist&#x27;: False, &#x27;stream_type&#x27;: &#x27;live&#x27;, &#x27;preview&#x27;: {&#x27;small&#x27;: &#x27;https://static-cdn.jtvnw.net/previews-ttv/live_user_sykkuno-80x45.jpg&#x27;, &#x27;medium&#x27;: &#x27;https://static-cdn.jtvnw.net/previews-ttv/live_user_sykkuno-320x180.jpg&#x27;, &#x27;large&#x27;: &#x27;https://static-cdn.jtvnw.net/previews-ttv/live_user_sykkuno-640x360.jpg&#x27;, &#x27;template&#x27;: &#x27;https://static-cdn.jtvnw.net/previews-ttv/live_user_sykkuno-{width}x{height}.jpg&#x27;}, &#x27;channel&#x27;: {&#x27;mature&#x27;: False, &#x27;status&#x27;: &#x27;amongus at 4 !!&#x27;, &#x27;broadcaster_language&#x27;: &#x27;en&#x27;, &#x27;broadcaster_software&#x27;: &#x27;&#x27;, &#x27;display_name&#x27;: &#x27;Sykkuno&#x27;, &#x27;game&#x27;: &#x27;Among Us&#x27;, &#x27;language&#x27;: &#x27;en&#x27;, &#x27;id&#x27;: 26154978, &#x27;name&#x27;: &#x27;sykkuno&#x27;, &#x27;created_at&#x27;: datetime.datetime(2011, 11, 15, 1, 29, 29, 140794), &#x27;updated_at&#x27;: datetime.datetime(2020, 12, 10, 0, 35, 50, 916363), &#x27;partner&#x27;: True, &#x27;logo&#x27;: &#x27;https://static-cdn.jtvnw.net/jtv_user_pictures/sykkuno-profile_image-6ab1e70e07e29e9b-300x300.jpeg&#x27;, &#x27;video_banner&#x27;: &#x27;https://static-cdn.jtvnw.net/jtv_user_pictures/4b654ce5-58dc-4fa6-b77c-7250bb2d5269-channel_offline_image-1920x1080.png&#x27;, &#x27;profile_banner&#x27;: &#x27;https://static-cdn.jtvnw.net/jtv_user_pictures/1caee146-3323-4d45-9907-96c20c224d3e-profile_banner-480.png&#x27;, &#x27;profile_banner_background_color&#x27;: &#x27;&#x27;, &#x27;url&#x27;: &#x27;https://www.twitch.tv/sykkuno&#x27;, &#x27;views&#x27;: 23590965, &#x27;followers&#x27;: 1928724, &#x27;broadcaster_type&#x27;: &#x27;&#x27;, &#x27;description&#x27;: &#x27;Hi ! &#x27;, &#x27;private_video&#x27;: False, &#x27;privacy_options_enabled&#x27;: False}}, ... &#xA;

    &#xA;

    First, I want to know how I can iterate through the JSON to get the channel name using the id. I tried to do it on my own but it said that it isn't subscriptable.

    &#xA;

    Second, I have the following code that tries to use ffmpeg to get a screenshot of the stream through its source :

    &#xA;

    import streamlink, os&#xA;&#xA;# This code connects to the streamer&#x27;s source&#xA;# Get the Twitch API to work so you can add the streamer&#x27;s name at the end of the link&#xA;username = &#x27;Sykkuno&#x27;&#xA;streams = streamlink.streams(&#x27;http://twitch.tv/&#x27; &#x2B; username)&#xA;&#xA;# Stream source&#xA;stream = streams["best"].url&#xA;&#xA;# Directory where the screenshots will be saved&#xA;dir_path = os.getcwd() &#x2B; &#x27;/&#x27; &#x2B; username&#xA;&#xA;# number of streamers&#xA;streamers = 1&#xA;&#xA;os.system(&#x27;ffmpeg -i &#x27; &#x2B; stream &#x2B;&#x27; -r 0.5 -f image2 ${dir}/output_%09d.jpg&#x27;)&#xA;

    &#xA;

    But that is throwing the following error :

    &#xA;

    ffmpeg version 4.1.3-0ppa1~18.04 Copyright (c) 2000-2019 the FFmpeg developers&#xA;  built with gcc 7 (Ubuntu 7.3.0-27ubuntu1~18.04)&#xA;  configuration: --prefix=/usr --extra-version=&#x27;0ppa1~18.04&#x27; --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-nonfree --enable-libfdk-aac --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared&#xA;  libavutil      56. 22.100 / 56. 22.100&#xA;  libavcodec     58. 35.100 / 58. 35.100&#xA;  libavformat    58. 20.100 / 58. 20.100&#xA;  libavdevice    58.  5.100 / 58.  5.100&#xA;  libavfilter     7. 40.101 /  7. 40.101&#xA;  libavresample   4.  0.  0 /  4.  0.  0&#xA;  libswscale      5.  3.100 /  5.  3.100&#xA;  libswresample   3.  3.100 /  3.  3.100&#xA;  libpostproc    55.  3.100 / 55.  3.100&#xA;[hls,applehttp @ 0x557212854940] Opening &#x27;https://video-edge-c2a360.yto01.abs.hls.ttvnw.net/v1/segment/CuAErHgNDEVK3cqjkRZLcz4El99YD2ZSy9tgtjc3ZTrPuN4584-GY3DKYO3MFCBt9M3v8_7IfHAlLvHeUn2wq4d-VC7u4Zv2-k1Bee9IPmIXbFQLZFKrYiT98OTzFMDaElsEZ9Sr4MXz6FoAC1yXhhZ0MYahZVnZa1Tuqnn217nN_rN8wr7kdScBIir_Uo1s2C_I8_54mi2uzdgxB9AYj0a0kG2UtdPkUVA6Qc7XIZ0nUhEeObEf80N0uW9ZU6WHpO3V6G9RD0VkmwUexDWk9MaLy1NJuvLSzRaMfOmKxhrzn3UDoY4CrQN11KOnHYCiCOfvhZmMKzSqtiA8YP0Q9iS03eZZhPQ3WxBHWhd6VeZ0btNeeoudGX73EBIj4ujZnKWKfPiN8K_HLj5FZWqQ5m_4Q1llQlnSAfmhzXR9PHAkz8nxRVcFR-tFokGzFEfkZGHngPNz9boLmo4KHx6404rocPUcXbTHkYsWXZwFC356AhfrNn6x0JYHGfcDpRsEFebLQljEpCyhnNOHFEf9b7Ipeiy521cCupzoEz1uMrzW77h9FJwn0GwvY3jp2KwRXJMvArYwiUHccBmfW7ZDLO9vH7eJGUnAzoy586KMSPLVeLxWMWRDfKkAcI8vYXOIuxNb_MZKm2O_dcoFrDDta5TZn-MLjFquT47P9NbXxlTTJfimlYyMG17SPoW3KJVtAJmjoj0GZ1ehftLJWz1Qgd8zmg40u4g8fz867eCHW_Tiv65yd6qJZD-_bD3G916fm3KeA9bPyhalTD99CWhQL7f0apCfX_6IiQElgPT6kOrFI-ISEG4GdhIpFi4ubzSx29pm7H4aDIXx6BAI5ziHVMPbrg.ts&#x27; for reading&#xA;[hls,applehttp @ 0x557212854940] Opening &#x27;https://video-edge-c2a360.yto01.abs.hls.ttvnw.net/v1/segment/CuIECWLarz2I5hNCtGLSTDXbCIgahI91KOHXVmPHddzZediyiVbcicZpGakO99CJp1cK_6OnmOKBzZ3sn3KogNyPVRqSy32IpanlyPPUTz23TojfR5DTmJa3zampOzVMfETvvPEpj58-kGhQeQQGtK1zLV2h465RElCLkmc7SeWbXEZ5j6IQ38OVFZ0vdcMHVTNPtJaY7509bE196-9-5YYFiET_-kdkS2X6_lhVQBZrq45PBxApTzeLkDx9ZtGQx78dLr_tZepww_uVnJTwxI_TA3tU8z5_w8ml6rh0GK1W6lTlvuDkPKAwIDLvG736MtbPGz9cFPoRAFQxD3QSwAM-bO1grvWlNsOUDUYLXLNjuejmz8xmRpeE0pqJYxUboRZpxrPXTi52HcX8lpGT4Lx2z6hJcoi9npQttK58HDSHQ3cYH3rlNsYV_RlZ3F-u-fZSn8Em67-vAYeXAMaBe9xxv0Zu2n1TrdPICMyGmk-VgLK788IeDhxqM441GONGLxo6AF8RE5_OawTf9n_MVzImsX4LMn0oN8e8w6mjk7YDuNdA4mEl99Erg8xMdX6Q3fDYTdStaC-zQwXgMctfGpIsUpp91BtRBPMynFCxZ8fZB7NvGFNZTYWDvCZjisiwzs0N1pDdDM_Fkj3i46_Ou105z348PLHRA28Dt1qgn_NjzwRNoaowFx7PxQ-X2zRpAhwNcqaTOHYh5NYZHToVE16WiOe9HzVs_I_3Wqu44bypEsGrhxYhgXSGfvO757iTbErZHmkidsBF2BET5j3JeIifr4fJooalAKc_5uiSPMCGSTtV9hIQX5mQWJudg9UsMRp1AWVrnBoMQPAhy1UwBDtAOrBs.ts&#x27; for reading&#xA;Input #0, hls,applehttp, from &#x27;https://video-weaver.yto01.hls.ttvnw.net/v1/playlist/CvADco9ZO_szpL7RVLVI3U6zl4IMo2uaUBvZTWAyEOKETN-SxI3m3hLLxpmCfz06rlyCGCPimEbk28kKPSbVYtMThiZFRtLxnrdpLr5DWBQwbpIStPQwMetU4Z04Mkm3nEWplL8hpn69Cmd_eWSdI1yHubK_sRL-n1ml5akAEWWGkS0OgVRQTTsYv4RpkbeWc8wrr3DsDBDfyrxciGSZevnStZOLwg-tNuNu3VNugLigNG1HMsNdxoJGO6wLyO-6FL5EQidOiSw2THSibAvADAWMVOxNX2z39d-nJwbVprbWFnox_lDlh-y88uhjj_MpU6OwkXP9vgrBDEmKjtRbYsIN5N94-8pDFEB3yIYk10vUiuod1yfqztVCqWo5m9r48uINP1CD-Bwgybo6K7Oko-TUjMj43GqAu0mmPtkgPFO69LpQQMifZTn_XbVQ5UUfoCwyl-ljObfRE51aCvZP_dOTsUyqi_JRE8h-C3306aW1ISXwCs3YpnjDxJv6yKyWTktBvsN5NWMVzJg-_-MAtTmoy-w2ppbbOozLzyrGF4zfCetaHLmHtbsKe1Ed1nndJg9b6T7v-87ExrI0eQwRjH3gmBTgqu_peS5oQGBaDOe4QSGMNFgf8lQfuqvFH-miXgpk8RytdorzT7wB05iX7c3bhBIQ3FvvjNIal3IgvyxKatZs4BoMW_P_CuyZOUJs2_Yr.m3u8&#x27;:&#xA;  Duration: N/A, start: 60.000000, bitrate: N/A&#xA;  Program 0 &#xA;    Metadata:&#xA;      variant_bitrate : 0&#xA;    Stream #0:0: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp&#xA;    Metadata:&#xA;      variant_bitrate : 0&#xA;    Stream #0:1: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p(tv, unknown/bt709/unknown), 1920x1080, 29.97 tbr, 90k tbn, 2k tbc&#xA;    Metadata:&#xA;      variant_bitrate : 0&#xA;    Stream #0:2: Data: timed_id3 (ID3  / 0x20334449)&#xA;    Metadata:&#xA;      variant_bitrate : 0&#xA;Stream mapping:&#xA;  Stream #0:1 -> #0:0 (h264 (native) -> mjpeg (native))&#xA;Press [q] to stop, [?] for help&#xA;[swscaler @ 0x557213e262c0] deprecated pixel format used, make sure you did set range correctly&#xA;Output #0, image2, to &#x27;/output_%09d.jpg&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf58.20.100&#xA;    Stream #0:0: Video: mjpeg, yuvj420p(pc), 1920x1080, q=2-31, 200 kb/s, 0.50 fps, 0.50 tbn, 0.50 tbc&#xA;    Metadata:&#xA;      variant_bitrate : 0&#xA;      encoder         : Lavc58.35.100 mjpeg&#xA;    Side data:&#xA;      cpb: bitrate max/min/avg: 0/0/200000 buffer size: 0 vbv_delay: -1&#xA;[image2 @ 0x557213012040] Could not open file : /output_000000001.jpg&#xA;av_interleaved_write_frame(): Input/output error&#xA;frame=    1 fps=0.0 q=7.5 Lsize=N/A time=00:00:02.00 bitrate=N/A speed=27.7x    &#xA;video:46kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown&#xA;Conversion failed!&#xA;

    &#xA;

  • How can I capture simple video input with audio from a capture device

    17 décembre 2020, par Geoff Sweet

    I'm using ffmpeg on Arch linux and trying to convert some old video to digital. The setup is pretty straightforward and if I connect to the capture device with VLC I get the video and audio just fine. So now I want to capture that with ffmpeg and write it to a file so I can edit it and clean it up. I'm only so-so familiar with ffmpeg and I've been digging through the man pages and here is where I am at.

    &#xA;

    This command captures perfect audio, but no video :

    &#xA;

    ffmpeg -f alsa -ac 2 -i front:CARD=Capture,DEV=0 out.mpeg&#xA;

    &#xA;

    This command captures perfect video ;

    &#xA;

    ffmpeg -f video4linux2 -i /dev/video0 out.mpeg&#xA;

    &#xA;

    captures the video signal great, but with no audio. So combining them together should give me :

    &#xA;

    ffmpeg -y -f alsa -ac 2 -i front:CARD=Capture,DEV=0 -f video4linux2 -i /dev/video0 out.mpeg&#xA;

    &#xA;

    But that command kinda falls on it's face. I get the audio, but no video :

    &#xA;

    ffmpeg -y -f alsa -ac 2 -i front:CARD=Capture,DEV=0 -f video4linux2 -i /dev/video0 out.mpeg&#xA;ffmpeg version n4.3.1 Copyright (c) 2000-2020 the FFmpeg developers&#xA;  built with gcc 10.2.0 (GCC)&#xA;  configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-amf --enable-avisynth --enable-cuda-llvm --enable-lto --enable-fontconfig --enable-gmp --enable-gnutls --enable-gpl --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libdav1d --enable-libdrm --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libiec61883 --enable-libjack --enable-libmfx --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librav1e --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libv4l2 --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxcb --enable-libxml2 --enable-libxvid --enable-nvdec --enable-nvenc --enable-shared --enable-version3&#xA;  libavutil      56. 51.100 / 56. 51.100&#xA;  libavcodec     58. 91.100 / 58. 91.100&#xA;  libavformat    58. 45.100 / 58. 45.100&#xA;  libavdevice    58. 10.100 / 58. 10.100&#xA;  libavfilter     7. 85.100 /  7. 85.100&#xA;  libswscale      5.  7.100 /  5.  7.100&#xA;  libswresample   3.  7.100 /  3.  7.100&#xA;  libpostproc    55.  7.100 / 55.  7.100&#xA;Guessed Channel Layout for Input Stream #0.0 : stereo&#xA;Input #0, alsa, from &#x27;front:CARD=Capture,DEV=0&#x27;:&#xA;  Duration: N/A, start: 1608093176.894565, bitrate: 1536 kb/s&#xA;    Stream #0:0: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s&#xA;[video4linux2,v4l2 @ 0x56248fe0ab80] Dequeued v4l2 buffer contains corrupted data (0 bytes).&#xA;Input #1, video4linux2,v4l2, from &#x27;/dev/video0&#x27;:&#xA;  Duration: N/A, start: 0.000000, bitrate: 995328 kb/s&#xA;    Stream #1:0: Video: rawvideo (YUY2 / 0x32595559), yuyv422, 1920x1080, 995328 kb/s, 30 fps, 30 tbr, 1000k tbn, 1000k tbc&#xA;Stream mapping:&#xA;  Stream #1:0 -> #0:0 (rawvideo (native) -> mpeg1video (native))&#xA;  Stream #0:0 -> #0:1 (pcm_s16le (native) -> mp2 (native))&#xA;Press [q] to stop, [?] for help&#xA;[video4linux2,v4l2 @ 0x56248fe0ab80] Dequeued v4l2 buffer contains corrupted data (0 bytes).&#xA;    Last message repeated 30 times&#xA;[alsa @ 0x56248fdb3840] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)&#xA;[mpeg @ 0x56248fe0dfc0] VBV buffer size not set, using default size of 230KB&#xA;If you want the mpeg file to be compliant to some specification&#xA;Like DVD, VCD or others, make sure you set the correct buffer size&#xA;Output #0, mpeg, to &#x27;out.mpeg&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf58.45.100&#xA;    Stream #0:0: Video: mpeg1video, yuv420p(progressive), 1920x1080, q=2-31, 200 kb/s, 30 fps, 90k tbn, 30 tbc&#xA;    Metadata:&#xA;      encoder         : Lavc58.91.100 mpeg1video&#xA;    Side data:&#xA;      cpb: bitrate max/min/avg: 0/0/200000 buffer size: 0 vbv_delay: N/A&#xA;    Stream #0:1: Audio: mp2, 48000 Hz, stereo, s16, 384 kb/s&#xA;    Metadata:&#xA;      encoder         : Lavc58.91.100 mp2&#xA;frame=    2 fps=0.0 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=2.0 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=1.3 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=1.0 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.8 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.7 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.6 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.5 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.4 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.4 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.4 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.3 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.3 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.3 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.3 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.2 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/sframe=    2 fps=0.1 q=3.2 size=       0kB time=01:48:49.26 bitrate=   0.0kbits/s[video4linux2,v4l2 @ 0x56248fe0ab80] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=0 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=2020 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=4061 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=6102 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=8143 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=10184 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=12225 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=14266 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=16307 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=18348 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=20389 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=22430 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=24471 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=26512 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=28553 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=30594 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=32635 size=36451&#xA;[mpeg @ 0x56248fe0dfc0] buffer underflow st=0 bufi=34676 size=36451&#xA;frame=    2 fps=0.1 q=2.0 Lsize=    1470kB time=01:48:49.30 bitrate=   1.8kbits/s speed= 221x    &#xA;video:63kB audio:1388kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 1.314351%&#xA;Exiting normally, received signal 2.&#xA;

    &#xA;

    what I would ideally like is just a fairly raw 2ch stereo "dump" of what comes through the capture card.

    &#xA;

    As always, I super appreciate any advice

    &#xA;

  • ffmpeg exported .mp4 files won't open in premiere pro or vegas

    16 décembre 2020, par Bernhard Alber

    i recently used ffmpeg to add together roughly 350+ .mp4 files into one big file and then deleted the audio from that file.

    &#xA;

    However when importing the .mp4 file into Premiere Pro it keeps on telling me that the file is an unsupported file format or damaged file. It opens perfectly fine in VLC tho.

    &#xA;

    -i in ffmpeg gave me the following :

    &#xA;

    ffmpeg started on 2020-12-16 at 19:47:40&#xA;Report written to "ffmpeg-20201216-194740.log"&#xA;Log level: 48&#xA;Command line:&#xA;ffmpeg -i outputnoaudio.mp4 -report&#xA;ffmpeg version 4.3.1-2020-11-19-full_build-www.gyan.dev Copyright (c) 2000-2020 the FFmpeg developers&#xA;  built with gcc 10.2.0 (Rev5, Built by MSYS2 project)&#xA;  configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-lzma --enable-libsnappy --enable-zlib --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-libbluray --enable-libcaca --enable-sdl2 --enable-libdav1d --enable-libzvbi --enable-librav1e --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-libaom --enable-libopenjpeg --enable-libvpx --enable-libass --enable-frei0r --enable-libfreetype --enable-libfribidi --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libmfx --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-l  libavutil      56. 51.100 / 56. 51.100&#xA;  libavcodec     58. 91.100 / 58. 91.100&#xA;  libavformat    58. 45.100 / 58. 45.100&#xA;  libavdevice    58. 10.100 / 58. 10.100&#xA;  libavfilter     7. 85.100 /  7. 85.100&#xA;  libswscale      5.  7.100 /  5.  7.100&#xA;  libswresample   3.  7.100 /  3.  7.100&#xA;  libpostproc    55.  7.100 / 55.  7.100&#xA;Splitting the commandline.&#xA;Reading option &#x27;-i&#x27; ... matched as input url with argument &#x27;outputnoaudio.mp4&#x27;.&#xA;Reading option &#x27;-report&#x27; ... matched as option &#x27;report&#x27; (generate a report) with argument &#x27;1&#x27;.&#xA;Finished splitting the commandline.&#xA;Parsing a group of options: global .&#xA;Applying option report (generate a report) with argument 1.&#xA;Successfully parsed a group of options.&#xA;Parsing a group of options: input url outputnoaudio.mp4.&#xA;Successfully parsed a group of options.&#xA;Opening an input file: outputnoaudio.mp4.&#xA;[NULL @ 000001d06005e480] Opening &#x27;outputnoaudio.mp4&#x27; for reading&#xA;[file @ 000001d06005f540] Setting default whitelist &#x27;file,crypto,data&#x27;&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] Format mov,mp4,m4a,3gp,3g2,mj2 probed with size=2048 and score=100&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] ISO: File Type Major Brand: isom&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] Unknown dref type 0x206c7275 size 12&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] Processing st: 0, edit list 0 - media time: -1, duration: 336&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] Processing st: 0, edit list 1 - media time: 0, duration: 345709632&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] drop a frame at curr_cts: 345709632 @ 1295788&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] rfps: 60.000000 0.000269&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] rfps: 120.000000 0.001078&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] rfps: 240.000000 0.004310&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] rfps: 59.940060 0.001081&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] Before avformat_find_stream_info() pos: 35677073236 bytes read:12825017 seeks:1 nb_streams:1&#xA;[vp9 @ 000001d0600602c0] Format yuv420p chosen by get_format().&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] All info found&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 000001d06005e480] After avformat_find_stream_info() pos: 1206 bytes read:12857785 seeks:2 frames:1&#xA;Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;outputnoaudio.mp4&#x27;:&#xA;  Metadata:&#xA;    major_brand     : isom&#xA;    minor_version   : 512&#xA;    compatible_brands: isomiso2mp41&#xA;    encoder         : Lavf58.45.100&#xA;  Duration: 06:00:06.85, start: 0.021000, bitrate: 13209 kb/s&#xA;    Stream #0:0(eng), 1, 1/16000: Video: vp9 (Profile 0) (vp09 / 0x39307076), yuv420p(tv, bt709), 3840x2160, 13204 kb/s, SAR 1:1 DAR 16:9, 59.97 fps, 60 tbr, 16k tbn, 16k tbc (default)&#xA;    Metadata:&#xA;      handler_name    : VideoHandler&#xA;Successfully opened the file.&#xA;At least one output file must be specified&#xA;[AVIOContext @ 000001d060067740] Statistics: 12857785 bytes read, 2 seeks&#xA;

    &#xA;

    what am i doing wrong ?

    &#xA;

    i used this command to merge the videos together :

    &#xA;

    for %%i in (*.mp4) do echo file &#x27;%%i&#x27;>> mylist.txt&#xA;ffmpeg -fflags &#x2B;igndts -f concat -safe 0 -i mylist.txt -c copy output.mkv -report&#xA;

    &#xA;

    where i got this mylist.txt file :

    &#xA;

    file &#x27;surf_004_fix WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_1day WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_4dimensional WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_4head WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_4head WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_4head WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_a WR. Surfed by draph - 2160p60.mp4&#x27;&#xA;file &#x27;surf_acp_fix WR. Surfed by jalole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_adventure_final WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_again_njv WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_akai_final WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_amateur_v2b WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_amplitude_light WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_andromeda WR. Surfed by cole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_and_destroy WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_annoyance_njv WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_anything WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_arghmyeyes_retexture WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_artifex WR. Surfed by Cromalia - 2160p60.mp4&#x27;&#xA;file &#x27;surf_asrown WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_asrown WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ataque_final WR. Surfed by jalole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ataque_final WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_auroria2 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_auroria_ksf WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_awp_sk337_v3 WR. Surfed by  rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_awp_sk337_v3 WR. Surfed by tucks - 2160p60.mp4&#x27;&#xA;file &#x27;surf_axiom WR. Surfed by draph - 2160p60.mp4&#x27;&#xA;file &#x27;surf_axiom WR. Surfed by Zacki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_beginner2 WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_beyer WR. Surfed by green void - 2160p60.mp4&#x27;&#xA;file &#x27;surf_beyer WR. Surfed by Oli - 2160p60.mp4&#x27;&#xA;file &#x27;surf_blackside WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_bluewinter WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_borderlands WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_brutalist WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_calamity2 WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_calamity_njv WR. Surfed by redc - 2160p60.mp4&#x27;&#xA;file &#x27;surf_calzone WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_calzone WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_canisius2_fix WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_cartoon WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_catalyst WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_catalyst WR. Surfed by Troflecopter - 2160p60.mp4&#x27;&#xA;file &#x27;surf_cavemissile_fix WR. Surfed by src - 2160p60.mp4&#x27;&#xA;file &#x27;surf_cavemissile_fix WR. Surfed by tucks - 2160p60.mp4&#x27;&#xA;file &#x27;surf_chasm WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_chateau WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_cinnamon_fix WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_classics WR. Surfed by snowy - 2160p60.mp4&#x27;&#xA;file &#x27;surf_classics2 WR. Surfed by Ignis - 2160p60.mp4&#x27;&#xA;file &#x27;surf_collaboration WR. Surfed by Shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_commune_again_beta5 WR. Surfed by -p - 2160p60.mp4&#x27;&#xA;file &#x27;surf_compact WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_compact WR. Surfed by louieismyname - 2160p60.mp4&#x27;&#xA;file &#x27;surf_compulsive_njv and surf_compulsive_njv_h WRs Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_compulsive_njv_h WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_construction WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_cookiejar WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_coralis_ksf WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_coralis_ksf WR. Surfed by shena - 2160p60.mp4&#x27;&#xA;file &#x27;surf_cordelia WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_cordelia WR. Surfed by green void - 2160p60.mp4&#x27;&#xA;file &#x27;surf_corruption WR. Surfed by Oli - 2160p60.mp4&#x27;&#xA;file &#x27;surf_creation WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_crzyfrog_reloaded WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_cyka WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_damn WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_deceptive_final WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_delight WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_derpis_ksf WR. Surfed by jalole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_derpis_ksf WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_destiny_fixed WR. Surfed by MaKo - 2160p60.mp4&#x27;&#xA;file &#x27;surf_devil WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_dhyana WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_diamond_beta1 WR. Surfed by snowy - 2160p60.mp4&#x27;&#xA;file &#x27;surf_dionysus WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_distraction_v2 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_distraction_v2 WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_diverge WR. Surfed by redc - 2160p60.mp4&#x27;&#xA;file &#x27;surf_dova WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_drifting WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_driftless WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_duggywuggy WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_dynasty WR. Surfed by tucks - 2160p60.mp4&#x27;&#xA;file &#x27;surf_efficacy WR. Surfed by MaKo - 2160p60.mp4&#x27;&#xA;file &#x27;surf_eggplant WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_elysium2 WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ember WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_eon WR. Surfed by Makela - 2160p60.mp4&#x27;&#xA;file &#x27;surf_epicube WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_epiphany WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_epiphany WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ethereal WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_exclave_fix WR. Surfed by redc - 2160p60.mp4&#x27;&#xA;file &#x27;surf_exogenesis WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_exogenesis WR. Surfed by Silverthing - 2160p60.mp4&#x27;&#xA;file &#x27;surf_exogenisis WR. Surfed by louieismyname - 2160p60.mp4&#x27;&#xA;file &#x27;surf_exurbia_v2 WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_fabas WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_facility WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_forbidden_tomb2 WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_forbidden_tomb4 SWWR. Surfed by maggi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_forbidden_ways_ksf WR. Surfed by Ignis - 2160p60.mp4&#x27;&#xA;file &#x27;surf_forgotten WR. Surfed by luke - 2160p60.mp4&#x27;&#xA;file &#x27;surf_fortum WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_fortum_fix WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_freedom WR. Surfed by Synokz - 2160p60.mp4&#x27;&#xA;file &#x27;surf_froots_ksf WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_fruits WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_garden WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_gauntlet_final WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_gekar WR. Surfed by Troflecopter - 2160p60.mp4&#x27;&#xA;file &#x27;surf_germania WR. Surfed by spooder - 2160p60.mp4&#x27;&#xA;file &#x27;surf_globalchaos WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_goldarn WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_goldarn WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_goliath WR. Surfed by draph - 2160p60.mp4&#x27;&#xA;file &#x27;surf_grassland WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_greenhouse WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_happyhands3 WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_happyhands3 WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_happyhands4 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_happyhands4 WR. Surfed by Cromalia - 2160p60.mp4&#x27;&#xA;file &#x27;surf_happyhug WR. Surfed by jalole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_healthy WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_helium_fix WR. Surfed by Shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_helloworld WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_helloworld WR. Surfed by melinder - 2160p60.mp4&#x27;&#xA;file &#x27;surf_highlands WR. Surfed by mbn - 2160p60.mp4&#x27;&#xA;file &#x27;surf_hob WR. Surfed by Cromalia - 2160p60.mp4&#x27;&#xA;file &#x27;surf_hob WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_hollow WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_hotwheels WR. Surfed by skip tracer - 2160p60.mp4&#x27;&#xA;file &#x27;surf_huh WR. Surfed by tato - 2160p60.mp4&#x27;&#xA;file &#x27;surf_hyper WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_iceworld WR. Surfed by mbn - 2160p60.mp4&#x27;&#xA;file &#x27;surf_imex WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_impact WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_infamous_ksf WR. Surfed by green void - 2160p60.mp4&#x27;&#xA;file &#x27;surf_infected_h WR. Surfed by MaKo - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ing WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_injection_njv WR. Surfed by Cromalia - 2160p60.mp4&#x27;&#xA;file &#x27;surf_injection_njv WR. Surfed by Shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_insideout_final WR. Surfed by MaKo - 2160p60.mp4&#x27;&#xA;file &#x27;surf_insignia_b1 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_insignia_b1 WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_inspire WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_intense_ksf WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_interference WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_interference WR. Surfed by Spirit - 2160p60.mp4&#x27;&#xA;file &#x27;surf_intra WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_island WR. Surfed by tucks - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ivory WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_izded WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_jaqen WR. Surfed by proga - 2160p60.mp4&#x27;&#xA;file &#x27;surf_jenocide WR. Surfed  by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_jenocide WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_juturna WR. Surfed by Joshua - 2160p60.mp4&#x27;&#xA;file &#x27;surf_juturna WR. Surfed by manana - 2160p60.mp4&#x27;&#xA;file &#x27;surf_kalium WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_kitsune WR. Surfed by Joshua - 2160p60.mp4&#x27;&#xA;file &#x27;surf_kloakk WR. Surfed by tucks - 2160p60.mp4&#x27;&#xA;file &#x27;surf_klue WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_krow10 WR. Surfed by Joshua - 2160p60.mp4&#x27;&#xA;file &#x27;surf_krow10 WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_kz_mix_journeys WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_legends WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_lessons WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_liberation WR. Surfed by jalole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_liberation WR. Surfed by Shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_liberation2 WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_lies_ksf WR. Surfed by stevo - 2160p60.mp4&#x27;&#xA;file &#x27;surf_like_this WR. Surfed by green void - 2160p60.mp4&#x27;&#xA;file &#x27;surf_lithium WR. Surfed by redc - 2160p60.mp4&#x27;&#xA;file &#x27;surf_lithium2 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_lt_unicorn WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_lullaby_ksf WR. Surfed by Ignis - 2160p60.mp4&#x27;&#xA;file &#x27;surf_lullaby_ksf WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_map_h WR. Surfed by Shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_marah WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_mash-up WR. Surfed by jalole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_mesa_aether WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_mesa_fixed WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_mesa_mine WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_missing_no WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_mom_fix WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_morbid WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_mwag_reloaded WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_mynah_final WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_mynah_final WR. Surfed by redc - 2160p60.mp4&#x27;&#xA;file &#x27;surf_nebula WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_nesquik WR. Surfed by melinder - 2160p60.mp4&#x27;&#xA;file &#x27;surf_networked WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_nikolo WR. Surfed by Troflecopter - 2160p60.mp4&#x27;&#xA;file &#x27;surf_not_so_disaster WR. Surfed by tato - 2160p60.mp4&#x27;&#xA;file &#x27;surf_not_so_quick WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_nyx WR. Surfed by tucks - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ny_momentum_v3_1 WR. Surfed by cole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_oompa2 WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_our WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_overgrowth WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_pagoda WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_palette_fix WR. Surfed by Shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_pantheon WR. Surfed by cole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_papertown WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_paranoid_enigma WR. Surfed by Ignis - 2160p60.mp4&#x27;&#xA;file &#x27;surf_paranoid_enigma WR. Surfed by Shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_parc_colore WR. Surfed by Beetle179 - 2160p60.mp4&#x27;&#xA;file &#x27;surf_pavilion WR. Surfed by MaKo - 2160p60.mp4&#x27;&#xA;file &#x27;surf_petrus WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_placid WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_plethora_fix WR. Surfed by MaKo - 2160p60.mp4&#x27;&#xA;file &#x27;surf_plethora_fix WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_portal_game4 WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_pox WR. Surfed by Joshua - 2160p60.mp4&#x27;&#xA;file &#x27;surf_pox WR. Surfed by Sony - 2160p60.mp4&#x27;&#xA;file &#x27;surf_primero WR. Surfed by tucks - 2160p60.mp4&#x27;&#xA;file &#x27;surf_primero_fix WR. Surfed by draph - 2160p60.mp4&#x27;&#xA;file &#x27;surf_proliferation WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_prosaic WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_psycho WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_pyzire WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_qlimax_q WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_quartus_ksf WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_quasar_final WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_quattro WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_quickie_fix WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_quilavar WR. Surfed by dimmy - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ragequit WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_rapid WR. Surfed by Joshua - 2160p60.mp4&#x27;&#xA;file &#x27;surf_razer_final WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_reprise WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_rez WR. Surfed by levi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_rez WR. Surfed by mbn - 2160p60.mp4&#x27;&#xA;file &#x27;surf_rez2 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_ripper WR. Surfed by louieismyname - 2160p60.mp4&#x27;&#xA;file &#x27;surf_rocco_v2 WR. Surfed by Zacki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_royal WR. Surfed by arxxy - 2160p60.mp4&#x27;&#xA;file &#x27;surf_royal_fix WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_rst WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_runewords WR. Surfed by mbn - 2160p60.mp4&#x27;&#xA;file &#x27;surf_runewords2 WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_salient WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_salient WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sanding_ksf WR. Surfed by Marble - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sandman_v2 WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sandstorm2 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sandtrap2 WR. Surfed by draph - 2160p60.mp4&#x27;&#xA;file &#x27;surf_saturday WR. Surfed by fish”” - 2160p60.mp4&#x27;&#xA;file &#x27;surf_saturday WR. Surfed by Orson - 2160p60.mp4&#x27;&#xA;file &#x27;surf_savant_njv WR. Surfed by niyhM - 2160p60.mp4&#x27;&#xA;file &#x27;surf_school_fix WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sc_colours WR. Surfed by Silverthing - 2160p60.mp4&#x27;&#xA;file &#x27;surf_second WR. Surfed by proga - 2160p60.mp4&#x27;&#xA;file &#x27;surf_selenka WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_selenka WR. Surfed by src - 2160p60.mp4&#x27;&#xA;file &#x27;surf_semesterbreak WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sempar_njv WR. Surfed by Cromalia - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sensation_fix WR. Surfed by Cromalia - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sewers WR. Surfed by green void - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sh WR. Surfed by nev - 2160p60.mp4&#x27;&#xA;file &#x27;surf_shoria WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sinister2 WR Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sinister_evil WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sinsane_ksf WR. Surfed by arxxy - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sippysip WR. Surfed by green void - 2160p60.mp4&#x27;&#xA;file &#x27;surf_smile_njv WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_squirrelsonvacation WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_stickybutt_alpha WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_stonework4 WR. Surfed by draph - 2160p60.mp4&#x27;&#xA;file &#x27;surf_strafe WR. Surfed by Magzi - 2160p60.mp4&#x27;&#xA;file &#x27;surf_subway WR. Surfed by mbn - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sunnyhappylove WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sunset WR. Surfed by cream - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sunset WR. Surfed by shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sunset2_fix WR. Surfed by MaKo - 2160p60.mp4&#x27;&#xA;file &#x27;surf_swagtoast WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_sylvan WR. Surfed by dzy - 2160p60.mp4&#x27;&#xA;file &#x27;surf_synada WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_syria WR. Surfed by Joshua - 2160p60.mp4&#x27;&#xA;file &#x27;surf_syria_again WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_tenacious WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_tensile_njv WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_this_njv WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_torque2 WR. Surfed by kusche - 2160p60.mp4&#x27;&#xA;file &#x27;surf_trihard WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_trihard WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_tronia_refix WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_tronic BWWR. Surfed by niyhMfan1 - 2160p60.mp4&#x27;&#xA;file &#x27;surf_tronic_njv WR. Surfed by niyhM - 2160p60.mp4&#x27;&#xA;file &#x27;surf_tundra_v2 WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_two_colour WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_two_colour WR. Surfed by synki - 2160p60.mp4&#x27;&#xA;file &#x27;surf_utopia_njv WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_vale WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_vale2 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_vale2 WR. Surfed by JunichiK - 2160p60.mp4&#x27;&#xA;file &#x27;surf_valpect WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_vegetables WR. Surfed by Shuffle - 2160p60.mp4&#x27;&#xA;file &#x27;surf_whiteout WR. Surfed by Synokz - 2160p60.mp4&#x27;&#xA;file &#x27;surf_whiteout WR. Surfed by tucks - 2160p60.mp4&#x27;&#xA;file &#x27;surf_whoknows2 WR. Surfed by cole - 2160p60.mp4&#x27;&#xA;file &#x27;surf_whoknows3 WR. Surfed by emil - 2160p60.mp4&#x27;&#xA;file &#x27;surf_wood WR. Surfed by rulldar - 2160p60.mp4&#x27;&#xA;file &#x27;surf_y WR. Surfed by louieismyname - 2160p60.mp4&#x27;&#xA;file &#x27;surf_z WR. Surfed by Cromalia - 2160p60.mp4&#x27;&#xA;file &#x27;surf_zbig WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_zbig2 WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_zeonine WR. Surfed by Caff - 2160p60.mp4&#x27;&#xA;file &#x27;surf_zoomboys WR. Surfed by noti - 2160p60.mp4&#x27;&#xA;file &#x27;surf_zor WR. Surfed by Oli - 2160p60.mp4&#x27;&#xA;&#xA;

    &#xA;