
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (41)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (3538)
-
How can i cut a video from a specific timeline and save the cut area using ffmpeg ?
17 novembre 2015, par Sharondohp SharonasI have a Mov file i also have the file in Avi after converted it to Avi.
What i want to do is to cut a part of the file from minute 1:10 until 1:50What i tried so far :
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;
namespace CutVideos
{
public partial class Form1 : Form
{
// 1:10 to 1:50
public Form1()
{
InitializeComponent();
Process.Start("ffmpeg.exe",
"-sameq -t 10 -i E:\\New folder (29)\\MVI_7747.avi E:\\New folder (29)\\10seconds.avi");
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}First i tried to mov file then the avi in both cases it didn’t create the output file.
For testing i did that it will cut only the first 10 seconds of the movie file. But it’s not working. Later i want to cut and save the part from minute 1:10 to 1:50I noticed that there is an error i think with the ffmpeg when running the program but i couldn’t see it since the console window is closing too fast.
-
remove a subpart from the middle of a video
22 mars 2020, par OneWorldI am trying to remove a middle part from a video from 2 to 3 seconds using FFMPEG. So that the video plays with the start, and the end but without the middle part between 2 to 3 seconds.
This page helped a little bit
https://superuser.com/questions/681885/how-can-i-remove-multiple-segments-from-a-video-using-ffmpegMy code is as follows :-
ffmpeg -i input.mp4 -filter_complex "[0:v]trim=start=2:end=3,setpts=PTS-STARTPTS, concat[out1]" - map [out1] output_without_2_to_3_secs.mp4
However with this code I get the following error message
Cannot find a matching stream for unlabeled input pad 1 on filter Parsed_concat_2. I’m using a Mac.
Any suggestions much appreciated
-
Remuxing DIVX to MP4 for iDevices
16 octobre 2013, par Chris RobinsonPlease note, everything I refer to hereafter is using ffmpeg.
I have a DIVX video which has an
mpeg4
codec (MPEG4 Part 2) and an mp3 audio stream as given byffmpeg -i file.avi
. It's my understanding that I should simply be able to remux into anmp4
container for use with iTunes and iDevices byffmpeg -i file.avi -vcodec copy -acodec copy output.mp4
seeing as both codecs are complient with the Mpeg4 Part 14 specification. However I can't import these files into iTunes. I'm assuming this is because the FourCC of the original stream has been set to DIVX.
Is there an easy way to change this without re-encoding the video stream ? I'm looking to remux rather than re-encode to keep losses to a minimum and because I have a massive library of DIVX files that I want to import into iTunes and ffmpeg is easily scriptable for addition of future files.