
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (56)
-
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 -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (8380)
-
avcodec/lzw : ff_lzw_decode_tail() now returns the consumed bytes in lzw decompress
10 novembre 2015, par Ni Hui -
Assigning variable a home file path returns warning
28 mai 2015, par Code_Ed_StudentI am working with
ffmpeg
and bash. The question that follows is more in relation to bash scripting variable assignment. I compiledffmpeg
from source using the guide. There are two ways to invokeffmpeg
:cd ~/bin && ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv
or/home/yourusername/bin/ffmpeg ...
. However in my script I am trying to set path to a variable and it returns the errorUsing a password on the command line interface can be insecure
. How can I properly call the program without this warning ?#!/bin/bash/
ffprobe_path="/home/yourusername/bin/ffprobe"
while IFS== read field value; do
details[$field]="$value"
done < <($ffprobe_path -i "$file" -show_format -v quiet | grep '.=.')
echo "${details[duration]}"Result
Warning: Using a password on the command line interface can be insecure.
-
How to keep the orientation number(exif) after converting from a video file to a image file by a ffmpeg command
24 novembre 2023, par user27240The command below is working perfectly fine for my environment except it deletes the orientation number (EXIF) of the image file after being converted from a video file.


System info :


- 

- FFmpeg 2.2.2
- CentOS 6 (x86_64)






I'd like to know how to keep the orientation number(exif) of the image with the command line below(it also have to keep the original purpose of its functionality which is to convert a video to a image from one directory to another.). I'd appreciate if anyone could help me out.


for i in /path/to/inputs/*.mp4; do ffmpeg -i "$i" -frames:v 1 "/path/to/outputs/$(basename "$i" .mp4).jpg"; done