
Recherche avancée
Autres articles (63)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...)
Sur d’autres sites (3943)
-
Using Cut with Fast Seek -ss -to and HH:MM:SS:MS
1er avril 2019, par Matt McManisI’m trying to cut a video using
-ss
and-to
usingHH:MM:SS:MS
time.I’m using
-to
instead of-t
because I want the cut to be "between" a time range and not "up to" time.
I also have to use-to
because it’s needed for another program’s time input textbox I’m using. I won’t be able to use-t
for this case.Example :
https://superuser.com/a/670590
-ss 00:01:00:00 -to 00:02:00:00
cut starts at minute 1, ends at minute 2.
-ss 00:01:00:00 -t 00:02:00:00
cut starts at minute 1, ends at minute 3.https://trac.ffmpeg.org/wiki/Seeking#Cuttingsmallsections
Problem
I’m not able to use Fast Seek,
-ss
before the-i
,-to
after.I’m only able to use Slow Seek,
-ss
and-to
after the-i
.1. Fast
Doesn’t Work
This cuts a minute ahead of what’s in the time.
Cuts from
00:01:00
to00:03:00
, using thefaster
seek.ffmpeg -ss 00:01:00 -i video.mp4 -to 00:02:00 -c copy cut.mp4
2. Slow
Works
I’m trying to do this but with fast seek.
Cuts from
00:01:00
to00:02:00
, using theslower
seek.ffmpeg -i video.mp4 -ss 00:01:00 -to 00:02:00 -c copy cut.mp4
3. Fast
Works (with problems)
-copyts
ruins video time bar in player.Cuts from
00:01:00
to00:02:00
, using thefaster
seek.ffmpeg -ss 00:01:00 -i video.mp4 -to 00:02:00 -c copy -copyts cut.mp4
-
Revision 66261 : Une branche experimentale pour integrer BootStrap. Dev ONLY. DO NOT USE IN ...
26 septembre 2012, par cedric@… — LogUne branche experimentale pour integrer BootStrap ?. Dev ONLY. DO NOT USE IN PRODUCTION
-
Streaming live video from Windows to Android with FFmpeg
29 avril 2018, par Alan DanielsI am capturing live video on a Windows PC and encoding it with FFmpeg. I can stream the content live to another PC using
rtsp://[dest_ip:port]/live.sdp
as FFmpeg’s output on the sender and usingffplay -rtsp_flags listen rtsp://[dest_ip:port]/live.sdp
on the receiver. However, I have to run FFplay before starting the sender. Also, VLC cannot play the rtsp path :main debug: net: connecting to 127.0.0.1 port 5555
main error: connection failed: Connection refused by peer
access_realrtsp error: cannot connect to 127.0.0.1:5555
access_realrtsp debug: could not connect to: 127.0.0.1:5555/live.sdpHowever, FFplay and VLC can play something like
ffplay rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov
.On the Android side, I am using the Media API which can play content from a URI. It works with HTTP and RTSP (as far as I know).
I’ve looked at FFmpeg’s streaming guide : https://trac.ffmpeg.org/wiki/StreamingGuide, but I am still confused about the difference between my path
rtsp://[dest_ip:port]/live.sdp
andrtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov
.Do I need a streaming server in order to have my content accessible by URI ? Any recommendations since FFserver is depreciated ?