
Recherche avancée
Autres articles (47)
-
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 ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (3518)
-
How can I make smooth zooming video from image sequence in FFMPEG ?
26 octobre 2020, par CALKingI need to make a video from an image sequence, actually a deepdream image sequence I have generated. And I've generated the images so that every image is a 1.05 x zoom on the last image, hoping to be able to make something like this : https://www.youtube.com/watch?v=dbQh1I_uvjo. But because of the demanding CPU deepdreaming requires, I didn't have the time and resources to generate images for a 30 fps video, but more like a 1 fps video. Which I actually managed to do, my code for that looks like this :


ffmpeg -r 1 -i %04d.jpg -c:v libx264 -r 10 output.mp4



Now to make the video smoother I want to smoothly zoom in 1.05 x on every image in the sequence for about a second or two before continuing to the next image, which should then be in position with the one before. I have no experiene at all with FFMPEG and can't find much help on the internet. Could anyone help me with this ?


Thanks !


-
Live TV Stream to Android
8 mai 2016, par Hd DreamI am new user on stackoverflow.
I wrote you today to get answer and solution to my problem.
I have input stream come from vlc. I need that all android connected to my network can watch stream in live in the same time like an online channel tv.
I saw for this channelCode : Select all
www.canal2international.net/live.phpthere is a same ts file is generated for each 45 second.
I need to do the same but with a mp4 file that I insered on html5 video tag.
for that I tried to convert my input stream with this cmd on ffmpegCode : Select all
ffmpeg -i 192.168.1.10:8620 -c:v libx264 -profile:v baseline -c:a aac -ar 44100 -ac 2 -b:a 128k -f segment -segment_time 45 -segment_format_options movflags=+faststart -segment_list D :\live\play.m3u8 -segment_list_size 2 D :\live\watch%03d.mp4I’m not satisfied. I can’t insert m3u8 file in html5 video tag because android don’t read it and his content.
I tried another code that I can say little similar that the result of this page
Code : Select all
www.canal2international.net/live.phpCode : Select all
ffmpeg -i 192.168.1.10:8620 -hls_flags single_file D :\live\play.m3u8It generated two files, a ts and a m3u8.
I know that html5 video tag can read ts file. Maybe there is a solution somewhere.The second way I don’t like in this code is ts file don’t read in real time. When I read file it begin from the first encoding.
All android connected to my network must watch in real time !
I don’t know how to solve my problem that’s why I write in thie forum.
Thank you in advance for all your help !
-
ffmpeg, download video stream from url
1er décembre 2014, par samiullahI am developing application to save any online webinar(video or audio) given the url using ffmpeg library. Url usually contain other contents like text, images as well. So i have problem, how to separately get video stream from url using ffmpeg(or some other better free library). Url may be for any site, not only for youtube, but as an example, link may be like
http://wildkingdom.magnify.net/video/Dangerous-Moments-in-the-Wild-K ;recent or
http://www.youtube.com/watch?v=wnrJJYm7qIw
etc