
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (67)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (9542)
-
How to download a 61th minute video for 5 seconds remotely ?
18 octobre 2015, par user186259As you can quickly download video from a remote part of a large video file with ffmpeg ?
ffmpeg -ss 01:00:00 -i http://example.com/videofile.flv -t 00:01:00 -vcodec copy -acodec copy file.flv
Here I miss the first hour of video and download 61th minutes. It takes 20 minutes. Time of the operation = end of video and splitting it locally.
How can I speed up the process ?
-
Ffmpeg only saves files but don't re transmit the stream in node
3 juin 2018, par sonseiyaam using ffmpeg to get a video stream, save a file and re send to another machine.
Basicaly i am using the following command :
ffmpeg -timeout 60 -i udp://192.168.0.12:3000 -c:v libx264 -c:a mp2
-f tee -map 0:v -map 0:a
"[onfail=ignore]6067_20180602_214828.ts|[f=mpegts]udp://192.168.0.12:4000"The file is being generating perfectly, my problem is that i am not getting the udp stream when i try to test it using vlc.
Did i miss something ?
I get the command from : https://ffmpeg.org/ffmpeg-formats.html#tee
Regards
-
.mpd deleted after played
18 novembre 2020, par thxboxI would like to stream mp4 file with .mpd file. I installed MP4Box to convert mp4 to .mpd file, with this command


P4Box -dash 4000 -frag 4000 -dash-profile onDemand -segment-name out-seg -time-shift -1 -out prev_video.mpd prev_video.mp4



on my Ubuntu server


I also use nginx-rtmp-module to do video streaming.


My problem is after I play .mpd file with VLC Player then .mpd file was auto deleted.
so question is, is it possible to keep .mpd in my server ? or I miss some configuration while convert .mp4 to .mpd with MP4Box


Thank