
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (34)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (3725)
-
How can I download videos from reddit using praw
9 octobre 2023, par rabbibillclintonSo I want to download videos from reddit, I've seen projects on github but I'm very new to python and don't know how it works, if someone could explain I'd appreciate it, I found this project It works but it seperates audio and video and I want it all in one, I think you can combine those using ffmpeg but I don't know how that works either, also how do I configure some of this stuff like where the videos save and quality, here's my code.


from redvid import Downloader
import praw

reddit = praw.Reddit(client_id = "a", client_secret = "b", user_agent = "c")

subreddit = reddit.subreddit("learnpython")
hot = subreddit.hot(limit=5)

downloader = Downloader(max_q=True)

for submission in hot:
 downloader.url = submission.url
 reddit.download()



-
Slow seek in MKV videos with FFmpeg C/C++
14 juin 2019, par IgorSeeking in any large MKV H.264 video works very slow.
Call of av_seek_frame() in my code using FFmpeg LibAV takes about 3-10 seconds to jump to a middle position in 1-2 hours video.
I tried all combinations of flags : AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE, AVSEEK_FLAG_ANY, AVSEEK_FLAG_FRAME
However VLC seeks very fast in same MVK videos.
Seeking in MP4 H.264 works instantly. The problem is only with MKV.
Latest FFmpeg 4.1.3.
-
How to batch watermark videos with FFMPEG on a Mac [closed]
12 août 2020, par analogvidsI've seen a lot of code for scripts to batch convert and to batch watermark videos with FFMPEG but these are largely guides for windows. I need to know how to do this on a Mac. I've successfully written and run a shell script to batch convert videos :


for i in *.Avi; do ffmpeg -i "$i" -c:a aac -b:a 128k -c:v libx264 -preset veryslow "${i%}.mp4"; done)



I have also successfully run a command to convert and watermark videos individually :


ffmpeg -i test.MOV -i watermark.png -filter_complex "overlay=100:100" watermarked.mp4



I consistently get a syntax error when trying to combine these commands to create a script for batch watermarking. I do not need to batch convert in the same command, though having that option would be nice. Any guidance would be greatly appreciated.


for clarification, this is the script i created :


# !/bin/bash for i in *.MOV ; do ffmpeg -i "$i" -i watermark.jpeg -filter_complex “overlay=0” ”$I%.mp4" ; done


and this is the error message terminal spits out : ./batchwatermark10.sh : line 3 : unexpected EOF while looking for matching `"' ./batchwatermark10.sh : line 4 : syntax error : unexpected end of file


Thanks !