
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (29)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (4966)
-
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 ?