
Recherche avancée
Autres articles (60)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
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 (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (2858)
-
"make : *** No rule to make target 'clean'. Stop." error when i want to Build ffmpeg with NDK
26 avril 2015, par HosseinI want to Build ffmpeg with NDK in windows and i use this tutorial.
i have created "build_android.sh" file into ffmpeg folder, an this is it’s code :#!/bin/bash
NDK=C:/Users/HAKHASIN/Desktop/android-ndk-r10d
SYSROOT=$NDK/platforms/android-8/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows
function build_one
{
C:/Users/HAKHASIN/Desktop/android-ndk-r10d/sources/ffmpeg-2.6.2/configure \
--prefix=$PREFIX \
--disable-shared \
--enable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-ffserver \
--disable-avdevice \
--disable-doc \
--disable-symver \
--cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
--target-os=linux \
--arch=arm \
--enable-cross-compile \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fpic $ADDI_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \
$ADDITIONAL_CONFIGURE_FLAG
make clean
make
make install
}
CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"
build_onewhen i write commands in cygwin, i have 3 errors :
how can i fix these errors ? thanks
-
Download brightcove video
17 mai 2015, par desert877So I have sucessfully downloaded flash videos on in the past but for some reason I am having issues with a local news report. The video I am trying to download is :
When I check network sources I get the following output :
I downloaded a tool recommend to me call ffmpeg and ran a command from a forum that said "Invalid data found when processing input". Unable to figure out issue there.
Does any one know any scripts/code/tools/methods whatever that I can use to download this video ?
Any help would be great.
-
Integrating ffmpeg with qtcreator on windows
26 juin 2015, par Mayank AgarwalI am making simple application just calling ffmpeg
av_register_all
in qt project ffmpegexamplemain.cpp
but i am getting the following error :main.obj :-1 : error : LNK2019 : unresolved external symbol
_av_register_all referenced in function _mainMy
.pro
file is as follows :QT += core
QT -= gui
QMAKE_CXXFLAGS += -D__STDC_CONSTANT_MACROS
INCLUDEPATH = -I D:/ffmpeg/dev/include
LIBS += -LD:/ffmpeg/shared/bin
LIBS += -LD:/ffmpeg/dev/lib
TARGET = ffmpegexample
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cppIncluding the LIBS and DLLs as well as headers from ffmpeg static/dev builds from this location.
My main file is below :
#include <qcoreapplication>
extern "C" {
#include <libavutil></libavutil>imgutils.h>
#include <libavutil></libavutil>samplefmt.h>
#include <libavutil></libavutil>timestamp.h>
#include <libavformat></libavformat>avformat.h>
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
av_register_all();
return a.exec();
}
</qcoreapplication>also run qmake to generate
Makefile.debug
and also copied all the dlls and .libs in folder where projectmain.cpp
is there
but that also didn’t help
i am getting error :main.obj :-1 : error : LNK2019 : unresolved external symbol
_av_register_all referenced in function _main File not found main.objDon’t understand why
main.obj
is not getting generatedRegards
Mayank