
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (4)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (1470)
-
How to create a JavaScript code to convert a YouTube video to mp3 on a website ?
2 octobre 2019, par Uyen_77How does one take a YouTube link and convert it to mp3 ? I’ve seen this done on a few sites like : https://y2mate.com/ and https://ytmp3.cc/
How is code like this written ? I want to do this in JavaScript but not sure how to implement. The way I am trying to make the site is by writing the code like :
- Load with curl : https://youtube.com/Watch
- Parse json & extract url
- Download video to server
- Use ffmpeg to convert
- Send url to user
- Allow them to download the extracted audio
Can someone show what the code for this would look like.
If anyone knows of a better way to do this for a website please explain.
Thank you
-
Cannot download youtube by ffmpeg
3 mai 2022, par itil memek cantikErr when a youtube video was tried in such


$ ffmpeg -i 'https://youtu.be/NFTZbSU7X9I' -c copy t.mp4



it echos :


https://youtu.be/NFTZbSU7X9I: Invalid data found when processing input



What actually the cause and how to solve ?
thanks in advance


-
FFMPEG RTSP stream to Youtube, am i doing everything right ?
5 août 2018, par F O XHello, i’m currently streaming my camera ip to a youtube, almost everything is okey but i just wonder if i’m doing everything right, as you can see at the image with just one stream there are two huge processes running splitted into several smaller once, shouldn’t be just one process running or at least not so many of them ?
Also is my ffmpeg command fine for what i’m doing or should i add/delete something ?
!/bin/bash
DATETIME=
date +%Y%m%d%H%M
DATE=date +%Y%m%d
echo="WE BE RUNNING !"
while :
do
echo
ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://192.168.1.22:555/11 -tune zerolatency -vcodec libx264 -pix_fmt + -c:v copy -c:a aac -strict experimental -b:v 1000k -maxrate:v 400k -minrate:v 300k -f flv rtmp://YOUTUBE-ID-STREAM
done
EOF
I’m doing it on Ubuntu Mate (16.04) with Raspberry 3 B+
Thanks.