
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (31)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs.
Sur d’autres sites (5624)
-
How to install ffmpeg and an app together on a Mac ?
30 juin 2016, par PatrickI have an electron app built and packaged for macOS in a
.app
file. The app requires ffmpeg to be installed on the end-user’s computer to be used.Currently, I’ve had to manually install ffmpeg on each end-user’s computer to run the app.
I want to distribute the app online with an easy installer for both ffmpeg and the app. I’ve seen
.dmg
files which allows you to drag the.app
into the applications folder easily, but the ffmpeg dependency is still absent in the installation process.How can I install ffmpeg and the app together on a mac ?
Perhaps including the ffmpeg build in the
.app
content is a solution as well.
This may not be possible though because a relevant question mentions there are only abstractions of the ffmpeg CLI instead of something that can directly use ffmpeg. -
Get Pid Ffmpeg On Centos With Bash Script
2 mai 2020, par Abdullah Al-HabsyiI was created SH script n run with cron for 3 hours. but i want update live cctv real time if not online, i want grep pid for each sh i have. if pid exist nothing to do, if pid not exist run command this.



#!/bin/bash
#IP 192.168.19.6

ping -c 1 -q 192.168.19.6 >&/dev/null

if [ $? -eq 0 ]; then
 rm -rf /var/www/cctv/public_html/video/ri-2/*.ts;
 rm -rf /var/www/cctv/public_html/video/ri-2/*.m3u8
 ffmpeg -stimeout 87000000 -err_detect aggressive -fflags discardcorrupt \
 -rtsp_transport tcp -i "rtsp://admin:12345@192.168.19.6/media/video1" \
 -vf scale=320:-1 -c:v libx264 -pix_fmt yuv420p -preset:v ultrafast \
 -hls_time 10 -hls_list_size 10 -hls_delete_threshold 10 -hls_flags delete_segments -f hls \
 "/var/www/cctv/public_html/video/ri-2/simpang.m3u8" \
 -progress -stats

else
 rm -rf /var/www/cctv/public_html/video/ri-2/*.ts;
 rm -rf /var/www/cctv/public_html/video/ri-2/*.m3u8
fi 



-
Using ffmpeg ffprobe with Visual C++
11 juillet 2015, par astracat111I have the following command line that gives me the duration of a video file :
ffprobe.exe -i Video.mp4 show_entries format=duration -v quiet -of csv="p=0"
When I run this, I get back the duration of my video successfully, running it from a command prompt. Now, I’m kind of a beginner with C++, so I’m not sure how I could get that duration to be put into a float inside of my program. I’ve looked through a lot of articles and question and answer forums online and I’ve found possible answers with...using stdout/stdin to grab the information...? I’m not sure.
My strategy right now is to use CreateProcess() to run the process, then WaitForSingleObject(), then somehow use some command to grab the output data from the ffprobe process. Perhaps the data I’m looking for can be retrieved through the CreateProcess() function ? I feel like I’m very close, but I’m in serious need of help with this...
As a side note, since I’m using Visual C++ Express 2010, I do not have access to MFC.
If anyone could lead me in the right direction to this information it would be greatly appreciated.