
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (74)
-
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 (...) -
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. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (4521)
-
ffmpeg - invalid duration
22 septembre 2016, par OmidAntiLongFor a project I’m working on I have a small bash script that loops over an input csv file of timecodes, and uses ffmpeg to create screenshots of a given film at each timecode. The csv file is in the format hh:mm:ss,id - it looks like this (extract)
00:00:08,1
00:00:49,2
00:01:30,3
00:02:38,4
00:03:46,5
00:04:08,6
00:04:26,7
00:04:37,8
00:04:49,9
00:05:29,10
00:05:52,11
00:06:00,12
00:06:44,13
00:07:49,14
00:08:32,15
00:09:28,16
00:10:17,17
00:10:44,18
00:11:48,19
00:12:07,20I’ve used it without issue in the past, but today I’ve come to update some of the films and I’m getting a weird issue where ffmpeg is complaining that my input timecode is invalid, despite being in the right format.
The new input csv files are the same format as the old ones, but it seems like every so often ffmpeg drops the hours from the hh:mm:ss timestamp. If I comment out the ffmpeg line, everything prints to the terminal as expected (but obviously I get no screenshots).
This is my loop code :
while read code a
do
echo $code
f="$(printf "%03d" $i)"
ffmpeg -loglevel error -y -ss $code -i $FILM -vframes 1 -q:v 2 $OUTPUT/$f.jpg
((i++))
done < $INPUTI’ve tried all sorts, including padding the csv with extra 0s - which works until the hours tick over to 01.
Does anyone have any ideas ? I’m scratching my head.
Cheers
-
FFMPEG bat file won't run [closed]
8 octobre 2023, par Tiecubed@echo off
setlocal enableextensions enabledelayedexpansion

set "input_directory=C:\Users\tiecu\OneDrive\Desktop\testing environment\Pending"
set "output_directory=C:\Users\tiecu\OneDrive\Desktop\testing environment\Output"

for %%i in ("%input_directory%.mp4") do (
 set "input_file=%%i"
 set "output_file=!output_directory!%%~nxi"

 C:\ffmpeg\ffmpeg.exe -i "!input_file!" -map_metadata -1 -vf "rotate=2PI/180, vignette=1.1, scale=1200:-1,setsar=1,crop=1080:1920,setpts=PTS/1.1" -af "atempo=1.1" -c:v libx264 -crf 18 -c:a aac -strict experimental "!output_file!"
)



I have tried many bat scripts, all of them work except ffmpeg ones. The terminal opens and immediately closes. I have tried many scripts. ffmpeg works fine via cmd without a batch script. I'm entirely lost. It was working fine earlier, then in the middle of making the script it stopped working. So I went back to the previous working script and it would no longer work. Terminal opens and immediately closes.


-
How can I download a video with url beginning with blob:https://…
11 août 2017, par iMaxI would like to know if it is possible to download a video from a URL beginning with blob :
blob:https://www.xyz123…
i would prefer a terminal solution (ffmpeg ?, youtube-dl ?). but i have not found anything on the world wide web.
Again : I have the url of the video stream, which looks like the above. How can I download the complete video ?
Update
Ok. I now found a webpage which allowed me to download the video file I wanted :
https://video-download.online/But I am still wondering if there is a Terminal solution for downloading video with blob-URL (like in arte mediathek [ example arte ] or in zdf mediathek [ example zdf ]).
Does nobody know how to do it ?