
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (80)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (9293)
-
Android FFMPEG slow
22 juillet 2016, par ThommyI create a video with an overlay fading to merge this later with another video to get an overlayed video.
Merging and co are working fine and fast, but creating the overlay-video with a fading picture is very slow (3 to 4 fps). Other operations like scaling run with 10 to 200 fps.
Here is my ffmpeg command for creating the ovleray video.../binary/ffmpeg -loop 1 -i ../overlay_0.png -t 21.534 -vf scale=1280:720,fade=in:st=21.034:d=0.05,fade=out:st=21.534:d=2.0 -pix_fmt rgba -vcodec png -threads 5 -preset ultrafast ../outfile.mp4
Did I miss any commands to speed this up ?
-
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