Shaare your links...
3325 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 1 / 3
47 results for tags video x
  • How to Download Private Vimeo Videos [November 2024]
    Right-click on the video, then hover over the This Frame option in the context menu. A secondary menu will appear—select Open Frame in New Tab to open the video in a new tab. You should now see the video playing in the new tab

    yt-dlp '<video link>' --referer <webpage link>
    permalink -
    - https://viddownmadness.com/how-to-download-private-vimeo-videos/
    video
  • YouTube thumbnail
    Upscale ANY VIDEO For FREE with A1111 - YouTube
    permalink -
    - https://www.youtube.com/watch?v=Sl_vwqROro0
    ai video
  • Builds - CODEX FFMPEG @ gyan.dev
    winget install ffmpeg
    permalink -
    - https://www.gyan.dev/ffmpeg/builds/
    video
  • Creating Timelapse Video From Photos With FFMPEG · GitHub
    ffmpeg -pattern_type glob -i IMG_%4d\*.JPG -s hd1080 -c:v libx265 -crf 18 -preset ultrafast -vf "hflip,vflip,format=yuv420p" -tag:v hvc1 265-tagged-hd.mp4
    permalink -
    - https://gist.github.com/jkalucki/c81f8fe17599a8c9cd51b565d7dc27eb
    video
  • Shotcut - YouTube
    playlist des tutos shotcut
    permalink -
    - https://www.youtube.com/playlist?list=PLaD00K3WnWrQBqN3yImwdz8au_GZtUSUs
    video
  • YouTube thumbnail
    VirtualDub Time Lapse Tutorial (create timelapse from photos) - YouTube
    permalink -
    - https://www.youtube.com/watch?v=_7xW7RUwImE
    timelapse video
  • Comment télécharger des vidéos Vimeo ? | Comment Coder
    permalink -
    - https://www.commentcoder.com/telecharger-video-vimeo/
    video
  • handbrake [Wiki ubuntu-fr]
    permalink -
    - https://doc.ubuntu-fr.org/handbrake
    linux video
  • How to merge video and audio or why I have no sound in downloaded video - FastestTube
    En téléchargeant des videos sur youtube avec youtube-dl, je me suis retrouvé avec plusieurs fichier .webm, un pour l'audio et un autre pour la video... Il fallait donc les fusionner mettre dans un même conteneur (mkv). voila commen faire avec ffmpeg :

    Merging audio and video using ffmpeg

    Once you have downloaded both video and audio files (‘videoplayback.mp4’ and ‘videoplayback.m4a’ respectively), here’s how you can merge them into a single file:

       1. Download and install ffmpeg.

       2. Open a Command Prompt window in your downloads folder and run the following command
          **  In case of MP4 format (all, except 1440p 60fps & 2160p 60fps):

                ffmpeg -i videoplayback.mp4 -i videoplayback.m4a -c:v copy -c:a copy output.mp4

           ** In case of WebM format (1440p 60fps and 2160p 60fps):

               ffmpeg -i videoplayback.webm -i videoplayback.m4a -c:v copy -c:a copy output.mkv

       Wait until ffmpeg finishes merging audio and video into a single file named "output.mp4".
    permalink -
    - https://kwizzu.com/construct.html
    audio ffmpeg video
  • Sauvegarder ses DVD vidéo avec FFmpeg. | kaocode
    extrait : """
    Une fois la liste des fichiers utiles établit, on va utiliser ffmpeg en mixant plusieurs options :
           concat pour concaténer les fichiers qui nous intéressent.
           -map 0:v -map 0:a  pour être certain d’affecter la vidéo au premier flux et le son au deuxième. Certains lecteurs n’aiment pas que l’on commence par du son.
           et -vf yadif pour dés-entrelacer la vidéo. (À part si vous avez toujours un tube cathodique).

       Ensuite on peut enchaîner avec la compression de son choix :
           h264 + aac :

           ffmpeg -i concat:VTS_01_1.VOB\|VTS_01_2.VOB\|VTS_01_3.VOB -map 0:v -map 0:a -c:v libx264 -crf 18 -maxrate 4000k -vf yadif -c:a libfdk_aac -b:a 320k /home/kao/Vidéos/MonDVD.mkv

           On peut voir que la conversion se fait dans le bon ordre :

           Stream mapping:
           Stream #0:1 -> #0:0 (mpeg2video (native) -> h264 (libx264))
           Stream #0:2 -> #0:1 (pcm_dvd (native) -> aac (libfdk_aac))

           h265 + aac

           On peut adopter le h265 pour diviser le poids par deux, mais au risque de rencontrer des problèmes de compatibilité avec certains lecteurs vidéo :

           ffmpeg -i concat:VTS_01_1.VOB\|VTS_01_2.VOB\|VTS_01_3.VOB -map 0:v -map 0:a -c:v libx265 -crf 18 -maxrate 4000k -vf yadif -c:a libfdk_aac -b:a 320k /home/kao/Vidéos/MonDVD-h265.mkv

           VP9 + OPUS

           On peut aussi jouer les puristes et passer par du format entièrement libre :

           ffmpeg -i concat:VTS_01_1.VOB\|VTS_01_2.VOB\|VTS_01_3.VOB -map 0:v -map 0:a -c:v libvpx-vp9 -threads 8 -crf 14 -vb 6M -vf yadif -acodec libopus -ab 256k  /home/kao/Vidéos/MonDVD-VP9.mkv

           Les réglages pour le vp9 méritent d’être affiné, j’ai rencontré quelques problèmes lors de relecture, notamment pour le calage à un endroit précis sur la timeline. Le format est encore jeune, on pourra aussi ajouter l’option -speed 4 pour accélérer l’encodage ou passer par du vp8, moins performant sur le papier, mais plus mature dans la pratique pour le moment.

       Conclusion :

       Ce n’est pas si compliqué, mais le plus important est de ne pas dégrader la qualité, quitte à avoir des fichiers un peu lourd. Les multiples transformations et transcodages altèrent à chaque fois un peu plus l’image. Il est important d’être vigilant à chaque passe si l’on ne veut pas le regretter plus tard.
    """
    permalink -
    - http://kaocode.fr/sauvegarder-ses-dvd-video-avec-ffmpeg/
    video
  • video - How can I merge two mp4 files without losing quality? - Super User
    You can do this with ffmpeg:

    mkfifo temp0 temp1
    ffmpeg -i input0.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts -y temp0 2> /dev/null & \
    ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts -y temp1 2> /dev/null & \
    ffmpeg -f mpegts -i "concat:temp0|temp1" -c copy -absf aac_adtstoasc output.mp4

    This doesn't re-encode anything, it places them in a new transport stream container, which makes them more easy to concatenate, and then concatenates them back into an MP4. If output.mp4 already exists, the command will fail. The version above uses named pipes, if you're on a system that doesn't support those you'd have to use intermediate files (like windows):

    ffmpeg -i input0.mp4 -c copy -bsf:v h264_mp4toannexb temp0.ts
    ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb temp1.ts
    ffmpeg -i "concat:temp0.ts|temp1.ts" -c copy -bsf:a aac_adtstoasc output.mp4
    permalink -
    - http://superuser.com/questions/43588/how-can-i-merge-two-mp4-files-without-losing-quality
    video
  • Initiation à Docker - Korben
    permalink -
    - http://korben.info/video/initiation-a-docker
    docker video
  • play flv in html - Stack Overflow
    <head>
       <link href="http://vjs.zencdn.net/c/video-js.css"; rel="stylesheet">
       <script src="http://vjs.zencdn.net/c/video.js"></script>;
    </head>
    <body>
       <video id="video1" class="video-js vjs-default-skin" width="640" height="480"
           data-setup='{"controls" : true, "autoplay" : true, "preload" : "auto"}'>
           <source src="video1.flv" type="video/x-flv">
       </video>
    </body>
    permalink -
    - https://stackoverflow.com/questions/2248800/play-flv-in-html
    flv html video
  • Shotcut - Un éditeur vidéo libre - Korben
    permalink -
    - http://korben.info/shotcut-un-editeur-video-libre.html
    gratuit software video
  • Cybercrime Documentary Exposes Scams & Threats by Norton
    permalink -
    - https://fr.norton.com/mostdangeroustown/index.html#!/fr
    hacking video
  • Youtube-dlG - Une interface graphique pour Youtube-dl pour télécharger des vidéos Youtube (and co) facilement - Korben
    https://mrs0m30n3.github.io/youtube-dl-gui/

    merci Korben ;-)
    permalink -
    - http://korben.info/youtube-dlg-une-interface-graphique-pour-youtube-dl-pour-telecharger-des-videos-youtube-and-co-facilement.html
    software video youtube
  • YouTube thumbnail
    ▶ Thinkerview - Interview B.Bayart - Neutralité du net - YouTube
    Benjamin Bayart sur la neutralité du net, les réseaux, la citoyenneté.
    permalink -
    - https://www.youtube.com/watch?v=_lrC9Ydh3Fo
    neutralité société video
  • YouTube thumbnail
    ▶ Terrorisme/Internet : Liberté d'expression menacée en France ? - YouTube
    Très bonne émission avec Tristant Nitot, Jeremy Zimmerman et Korben ;-)
    permalink -
    - https://www.youtube.com/watch?v=uYzCK_RPzx8&feature=iv&src_vid=01gGuXRKH5I&annotation_id=annotation_3236842467
    société video viePrivée
  • Raspberry Pi Camera – 5 façons de faire du streaming | MagdiBlog
    permalink -
    - http://www.magdiblog.fr/divers/raspberry-pi-camera-5-facons-de-faire-du-streaming/
    raspberry video
  • avconv - Documentation Ubuntu Francophone
    permalink -
    - http://doc.ubuntu-fr.org/avconv
    video
Links per page: 20 50 100
◄Older
page 1 / 3
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.