
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (53)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (9374)
-
Trim (remove frames from) live video from webcam using python
10 septembre 2020, par Muhammad UsmanI have a webcam that captures video stream. After 30 seconds I want to remove 1 sec of the video from the start and keep capturing the video stream and so on. In short, I only want to save the latest 30 seconds of the live video.


OpenCV does not provide video processing


ffmpeg trims the video but creates a new output file, I don't want to keep copies.


#Create a video write before entering the loop
#Create a video write before entering the loop
video_writer = cv2.VideoWriter(
 video_file, video_codec, fps, (int(cap.get(3)), int(cap.get(4)))
)

#video_file is the file being saved

start = time.time()
i=0
seconds='1'
while cap.isOpened():


 ret, frame = cap.read()
 if ret == True:
 cv2.imshow("frame", frame)
 if time.time() - start > 10:
 print('video > 10 sec')
 
 subprocess.call(['ffmpeg', '-i', video_file, '-ss', seconds, 'output.avi'])
 break

 # Write the frame to the current video writer
 video_writer.write(frame)
 if i%24 == 0:
 cv2.imwrite('image'+str(i)+'.jpg',frame)
 i+=1
 if cv2.waitKey(1) & 0xFF == ord("q"):
 break
else:
 break
cap.release()
cv2.destroyAllWindows()



What I am looking for is how we can trip a live video and keep saving future frames so that the video don't exceed 30 seconds and keeps the latest frames.


-
ffmpeg NVENC Encoding with -flags:v +ildct shows "No NVENC capable devices found"
29 mai 2020, par gaamaaSo far I use NVENC with ffmpeg for all my encoding successfully. Today I got a new Zotac nVidia GEForce GTX 1660 6GB card.



I get "No NVENC capable devices found" error from ffmpeg. Only if I use
-flags:v +ildct
flag. Withoutildct
flag no issues except the output is progressive.


I 100% need Interlaced output and I tried most of the Interlaced flags like,
-vf tinterlace=interleave_top,fieldorder=tff
-x264opts tff=1
Nothing is giving me Interlaced output except-flags +ildct
But with "Zotac nVidia GEForce GTX 1660" ffmpeg shows :


No NVENC capable devices found




I even tried all latest nVidia drivers. Nothing helped me.



My pseudo ffmpeg command line is as below :



ffmpeg -i SourceFile.mkv -codec:v h264_nvenc -preset:v slow -flags:v +ildct+cgop -s:v 1920x1080 -ac 2 -ar 48000 -codec:a mp2 -b:a 384k -r 25 -f mp4 -y NewFile.mp4




Is it a bug with nVidia driver or ffmpeg ? Is latest nVidia Turing technology doesn't support Interlaced (very Bad) ?



Could some one help me ?


-
ffmpeg not working after update to Mavericks
24 février 2024, par Hudson BuddyAfter recently updating to Mavericks 10.9.5, my installation of ffmpeg has been bugging out



Error :



dyld: Library not loaded: /usr/local/lib/libx264.142.dylib
 Referenced from: /usr/local/bin/ffmpeg
 Reason: image not found
Trace/BPT trap: 5




Any thoughts ? I'm not very familar with manual compiling and I installed ffmpeg through Homebrew.



I tried uninstalling and doing :



brew install ffmpeg --HEAD
brew install ffmpeg --build-from-source




but it spits back a ./configure error



==> ./configure --prefix=/usr/local/Cellar/ffmpeg/2.4.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-avresample
If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "config.log" produced by configure as this will help
solve the problem.

READ THIS: https://github.com/Homebrew/homebrew/wiki/troubleshooting

These open issues may also help:
gpac 0.5.0 doesn't build against ffmpeg 2.4.1 (https://github.com/Homebrew/homebrew/issues/32978)