
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (48)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (5843)
-
Piwik PRO is hiring a Project Coordinator (Job description)
18 février 2015, par Matthieu Aubry — JobsAt Piwik and Piwik PRO we develop the leading open source web analytics platform, used by more than one million websites worldwide. Our vision is to build the best open alternative to Google Universal Analytics. We are growing and now looking for a Project Coordinator !
What will you be doing ?
- Participating in calls with Piwik PRO clients and analyzing requirements for enterprise customers
- Planning and coordinating the implementation of projects
- Helping customers to improve and adjust data reporting methods to suit their needs
- Functioning as the voice of the customer and provide internal feedback on how Piwik PRO can better serve our customers
What do we expect from you ?
- Fluent command of English (both in writing and speaking), confidence to communicate in formal conversations and a good knowledge of business English
- Previous experience in working with corporate clients
- Great communication skills
- A proactive attitude and the ability to use your initiative
- Ability to achieve goals without detailed instructions
Possessing these assets would be an advantage :
- Technical knowledge associated with using data analytics platforms
- Data analysis and interpretation skills
- Knowledge of German or French
- Knowledge of Piwik Analytics
What can you expect from us ?
- Flexible cooperation
- An attractive salary
- The opportunity to develop your skills and gain more experience by working on exceptional projects
- Multisport Card
- Access to a regularly updated resource library and the opportunity to contribute to it
- Flexible working hours
- Unforgettable parties and integration trips
- A completely unique work atmosphere – we really like to keep things informal
Location
We have offices in Poland and New Zealand, and Remote work is possible.
Ideally you will be located in the USA or in Europe where most of our clients are based.
Apply online
To apply for this position, please Apply online here. We look forward to receiving your applications !
-
how to prevent FFMPEG from increasing the video size ?
28 juin 2018, par drexdeltaMy aim is to compress the video and reduce its file size.
ffmpeg -i input.mp4 -crf 28 output.mp4
Now, this command, increases the size of the given input file. And on the otherside, quality of the video is same as earlier. So, it’s increasing the space for nothing.
How can I stop this from happening .
This is original video (size 9.5 MB) , and this is the compressed video (size 13.2 MB) .
So, I want to know, if it is possible to detect using ffmpeg, whether the size of the final video will increase or not ?
FYI : I am writing script. I am not planning to change the CRF factor. Because that will damage quality of other good videos.
These are the details on my ffmpeg version :
ffmpeg version 4.0 Copyright (c) 2000-2018 the FFmpeg developers
built with Apple LLVM version 9.1.0 (clang-902.0.39.1)
configuration: --prefix=/usr/local/Cellar/ffmpeg/4.0 --enable-shared --enable-pthreads --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-gpl --enable-ffplay --enable-frei0r --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopus --enable-librtmp --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-opencl --enable-videotoolbox --disable-lzma --enable-libopenjpeg --disable-decoder=jpeg2000 --extra-cflags=-I/usr/local/Cellar/openjpeg/2.3.0/include/openjpeg-2.3 --enable-nonfree
libavutil 56. 14.100 / 56. 14.100
libavcodec 58. 18.100 / 58. 18.100
libavformat 58. 12.100 / 58. 12.100
libavdevice 58. 3.100 / 58. 3.100
libavfilter 7. 16.100 / 7. 16.100
libavresample 4. 0. 0 / 4. 0. 0
libswscale 5. 1.100 / 5. 1.100
libswresample 3. 1.100 / 3. 1.100
libpostproc 55. 1.100 / 55. 1.100
Found something here :
"The only downside with this mode is that you don’t know what the resulting file size or the fluctuation of the bitrate will be." . checkout here
-
How to livestream a webcam to YouTube with FFmpeg ?
6 juillet 2023, par pkokI want to send the livestream of my webcam to YouTube. I can follow YouTube's guide up to step 8. "Stream Connection" tells me there is "No data" and the button "Go Live" remains unclickable. A screenshot of this situation can be seen at






As encoding software, I was planning on using FFmpeg because it can run from the target platform, a Raspberry Pi with Raspbian. A USB webcam supported by
video4linux2
is used.


FFmpeg's wiki shows that streaming a file can be done with the following :



ffmpeg -re -i input.mkv \
-c:v libx264 -preset veryfast -maxrate 3000k \
-bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 \
-ar 44100 -f flv rtmp://live.twitch.tv/app/<stream key="key">
</stream>



I modified this command in the following ways :
1. It takes the video stream from the webcam with
-f v4l2 -i /dev/video0
.
2. It does not broadcast any audio with-an
.
3. It broadcasts to YouTube's RTMP server,rtmp://a.rtmp.youtube.com/live2/<stream key="key"></stream>



The final version of the command is now :



RTMP_URL="rtmp://a.rtmp.youtube.com/live2"
STREAM_KEY="secr-etse-cret-secr"
OUTPUT=$RTMP_URL/$STREAM_KEY
ffmpeg -re -f v4l2 -i /dev/video0 \
-c:v libx264 -preset veryfast -maxrate 3000k \
-bufsize 6000k -pix_fmt yuv420p -g 50 -an \
-f flv $OUTPUT




When I run this command, I would expect that "Stream connection" would change to something else than "No data" after a few seconds, but that does not happen.



I have tried recording the stream to a local file with :



ffmpeg -re -f v4l2 -i /dev/video0 \
-c:v libx264 -preset veryfast -maxrate 3000k \
-bufsize 6000k -pix_fmt yuv420p -g 50 -an \
-f flv test.flv




This worked fine. That demonstrates to me that the issue is with getting the video stream accepted by YouTube.